/* ===================================
   CSS Reset & Base Styles
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #333333;
    background-color: #FFFFFF;
    line-height: 1.6;
    font-size: 16px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

a {
    color: #0066CC;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* ===================================
   Container & Layout
   =================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===================================
   Header & Navigation
   =================================== */
.header {
    background: linear-gradient(to right, #030810 0%, #3a6a9e 100%);
    padding: 8px 0;
    border-bottom: none;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.header-left a {
    display: block;
}

.logo {
    max-width: 320px;
    box-shadow: none;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 30px;
    height: 3px;
    background-color: #FFFFFF;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Navigation */
.main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: #FFFFFF;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    padding: 80px 30px 30px 30px;
    transition: right 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
}

.main-nav.active {
    right: 0;
}

.nav-menu {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.nav-menu li {
    margin-bottom: 20px;
}

.nav-menu a {
    font-size: 18px;
    font-weight: bold;
    color: #333333;
    text-decoration: none;
    display: block;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #0066CC;
}

.nav-menu a:active {
    color: #0066CC;
}

.phone-number {
    font-size: 18px;
    font-weight: bold;
    color: #0066CC;
    text-decoration: none;
    display: block;
    text-align: center;
    margin-top: 20px;
}

.phone-number:hover {
    color: #CC0000;
    text-decoration: none;
}

/* Desktop Navigation */
@media (min-width: 768px) {
    .mobile-menu-toggle {
        display: none;
    }

    .main-nav {
        position: static;
        width: auto;
        max-width: none;
        height: auto;
        background: none;
        box-shadow: none;
        padding: 0;
        display: flex;
        align-items: center;
        gap: 30px;
    }

    .nav-menu {
        display: flex;
        gap: 80px;
        margin: 0;
    }

    .nav-menu li {
        margin-bottom: 0;
    }

    .nav-menu a {
        font-size: 20px;
        color: #FFFFFF;
    }

    .nav-menu a:hover {
        color: #0066CC;
    }

    .nav-menu a:active {
        color: #0066CC;
    }

    .logo {
        max-width: 400px;
    }

    .phone-number {
        font-size: 17px;
        text-align: left;
        margin-top: 0;
    }
}

/* ===================================
   Hero Section
   =================================== */
.hero-eyebrow-section {
    padding: 30px 0 20px 0;
    background-color: #FFFFFF;
    text-align: center;
}

.hero-eyebrow {
    font-size: 30px;
    font-weight: bold;
    color: #0066CC;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin: 0 auto;
    width: 80%;
    display: block;
}

.hero {
    padding: 40px 0 0 0;
    background-color: #FFFFFF;
}

.hero .container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-content h1 {
    font-size: 32px;
    font-weight: bold;
    color: #333333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subheadline {
    font-size: 18px;
    color: #333333;
    margin-bottom: 0;
    line-height: 2.0;
}

.cta-button {
    background-color: #0066CC;
    color: #FFFFFF;
    font-size: 22px;
    font-weight: bold;
    padding: 20px 50px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
    max-width: 400px;
    -webkit-box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4) !important;
    -moz-box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4) !important;
}

.cta-button:hover {
    background-color: #CC0000;
}

.hero-image img {
    border-radius: 8px;
    width: 100%;
}

/* Small Mobile Phones */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-subheadline {
        font-size: 16px;
    }

    .price-display {
        font-size: 20px;
        letter-spacing: 3px;
    }

    .price-details {
        font-size: 16px;
        letter-spacing: 1.5px;
    }

    .services-title {
        font-size: 24px;
        letter-spacing: 1px;
    }

    .service-card h3 {
        font-size: 20px;
    }

    .cta-button {
        font-size: 16px;
    }
}

/* Desktop Hero */
@media (min-width: 768px) {
    .hero-eyebrow-section {
        padding: 40px 0 25px 0;
    }

    .hero-eyebrow {
        font-size: 36px;
    }

    .hero {
        padding: 50px 0 0 0;
    }

    .hero .container {
        flex-direction: row;
        align-items: center;
        gap: 50px;
    }

    .hero-content {
        flex: 1;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-subheadline {
        font-size: 20px;
    }

    .hero-image {
        flex: 1;
    }

    .hero-image img {
        margin-bottom: 0;
    }
}

/* ===================================
   Hero Price Section
   =================================== */
.hero-price {
    background-color: #CC0000;
    padding: 10px 0;
    overflow: hidden;
    position: relative;
}

.hero-price .container {
    animation: ticker 15s linear infinite;
    white-space: nowrap;
}

@keyframes ticker {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.price-display {
    font-size: 24px;
    font-weight: bold;
    color: #FFFFFF;
    line-height: 1;
    display: inline-block;
    letter-spacing: 4px;
}

.price-details {
    font-size: 22px;
    color: #333333;
    margin: 40px auto 0 auto;
    letter-spacing: 3px;
    text-align: center;
    font-weight: bold;
}

@media (min-width: 768px) {
    .hero-price {
        padding: 12px 0;
    }

    .price-display {
        font-size: 36px;
        letter-spacing: 12px;
    }

    .price-details {
        font-size: 32px;
        letter-spacing: 6px;
    }
}

/* ===================================
   Services Section
   =================================== */
.services {
    background-color: #FFFFFF;
    padding: 50px 0 60px 0;
}

.discount-callout {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    color: #CC0000;
    margin-bottom: 15px;
}

.services .cta-button {
    display: block;
    margin: 0 auto 40px auto;
    width: fit-content;
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.service-card {
    background-color: #FFFFFF;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.service-card h3 {
    font-size: 24px;
    font-weight: bold;
    color: #0066CC;
    margin-bottom: 10px;
}

.card-description {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333333;
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 0;
}

.service-card ul li {
    padding: 8px 0;
    font-size: 18px;
}

.service-card ul li:last-child {
    border-bottom: none;
}

.card-divider {
    font-size: 32px;
    font-weight: normal;
    color: #999999;
    text-align: center;
    margin: 20px 0;
    width: 100%;
}

/* Desktop Services */
@media (min-width: 768px) {
    .services {
        padding: 60px 0 80px 0;
    }

    .services .cta-button {
        margin-bottom: 50px;
    }

    .service-cards {
        flex-direction: row;
        gap: 40px;
        align-items: stretch;
    }

    .service-card {
        flex: 1;
        padding: 40px;
        max-width: 450px;
    }

    .card-divider {
        font-size: 40px;
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        width: auto;
        flex-shrink: 0;
    }
}

/* ===================================
   Truth Section
   =================================== */
.truth-section {
    padding: 40px 0 40px 0;
    background-color: #FFFFFF;
}

.truth-section h2 {
    font-size: 32px;
    font-weight: bold;
    color: #333333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.truth-content p {
    font-size: 18px;
    color: #333333;
    margin-bottom: 20px;
    line-height: 2.0;
}

ul.injury-grid {
    padding: 0 0 0 20px;
    margin: 20px 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px 40px;
}

ul.injury-grid li {
    font-size: 18px;
    line-height: 1.8;
    color: #333333;
    font-weight: 500;
    font-style: italic;
    list-style-type: disc;
}

.truth-closing {
    font-size: 24px;
    font-weight: bold;
    color: #333333;
    margin-top: 20px;
}

.truth-closing em {
    font-style: italic;
}

/* Desktop Truth Section */
@media (min-width: 768px) {
    .truth-section {
        padding: 30px 0 50px 0;
    }

    .truth-section h2 {
        font-size: 42px;
        margin-bottom: 20px;
    }

    .truth-content p {
        font-size: 20px;
    }

    ul.injury-grid li {
        font-size: 20px;
    }

    .truth-closing {
        font-size: 30px;
    }
}

/* ===================================
   Form Section
   =================================== */
.form-section {
    background-color: #FFFFFF;
    padding: 40px 0;
}

.form-section h2 {
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 15px;
    color: #333333;
    line-height: 1.15;
}

.form-subheadline {
    text-align: center;
    font-size: 16px;
    color: #333333;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.request-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    color: #333333;
}

.required {
    color: #CC0000;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #cccccc;
    border-radius: 5px;
    font-size: 16px;
    font-family: Arial, Helvetica, sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0066CC;
}

.form-group textarea {
    resize: vertical;
}

/* Honeypot field - hidden from users */
.honeypot {
    position: absolute;
    left: -9999px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-group label {
    font-weight: normal;
    cursor: pointer;
}

.contact-method-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 30px;
    margin-top: 10px;
}

.checkbox-inline {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-weight: 400 !important;
    font-size: 15px;
}

.contact-method-options label {
    font-weight: 400 !important;
}

.checkbox-inline input[type="checkbox"],
.checkbox-inline input[type="radio"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.field-error {
    color: #CC0000;
    font-size: 14px;
    margin-top: 8px;
    font-weight: bold;
}

.submit-button {
    background-color: #0066CC;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: bold;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.submit-button:hover {
    background-color: #CC0000;
}

.submit-button:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

.success-message {
    background-color: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 5px;
    margin-top: 20px;
    text-align: center;
    font-weight: bold;
}

.error-message {
    background-color: #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 5px;
    margin-top: 20px;
    text-align: center;
    font-weight: bold;
}

/* Form Two-Column Layout */
.form-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.form-intro h2 {
    text-align: left;
    margin-bottom: 20px;
    line-height: 1.1;
}

.form-intro .form-subheadline {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
    max-width: none;
    margin-bottom: 0;
    padding-bottom: 50px;
}

.form-image {
    width: 85%;
    border-radius: 8px;
}

.form-wrapper .request-form {
    max-width: none;
    margin: 0;
}

/* Desktop Form */
@media (min-width: 768px) {
    .form-section {
        padding: 80px 0;
    }

    .form-layout {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: start;
    }

    .form-section h2 {
        font-size: 36px;
    }

    .form-subheadline {
        font-size: 18px;
        line-height: 1.7;
    }

    .form-intro {
        position: sticky;
        top: 40px;
    }
}

/* ===================================
   Footer - 3 Column Layout
   =================================== */
.footer {
    background-color: #2a2a2a;
    color: #FFFFFF;
    padding: 50px 0 20px 0;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    color: #0066CC;
    font-size: 20px;
    font-weight: bold;
    margin: 0 0 20px 0;
}

.footer-column p {
    color: #CCCCCC;
    font-size: 15px;
    line-height: 1.8;
    margin: 0 0 12px 0;
}

.footer-column a {
    color: #0066CC;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #CC0000;
}

.footer-address {
    margin-top: 15px;
}

.footer-address em {
    color: #999999;
    font-style: italic;
}

.form-highlight {
    color: #e07020;
    font-style: normal;
}

.footer-bottom {
    border-top: 1px solid #444444;
    padding-top: 25px;
    text-align: center;
}

.footer-bottom p {
    color: #CCCCCC;
    font-size: 14px;
    margin: 0;
}

.footer-bottom strong {
    color: #0066CC;
}

/* Desktop Footer */
@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===================================
   About Page
   =================================== */
.about-hero {
    background-color: #FFFFFF;
    padding: 20px 0 0 0;
}

.about-hero h1 {
    font-size: 32px;
    font-weight: bold;
    color: #333333;
    margin-bottom: 0;
    line-height: 1.2;
    text-align: center;
}

.about-subheadline {
    font-size: 20px;
    color: #333333;
    line-height: 1.6;
    letter-spacing: 1px;
}

.about-text-full p {
    font-size: 20px;
    line-height: 2.0;
    color: #333333;
    margin-bottom: 20px;
}

.certs-title {
    font-size: 24px;
}

.about-text-full ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.about-text-full ul li {
    font-size: 20px;
    line-height: 2.0;
    color: #333333;
    margin-bottom: 8px;
}

.lead-text {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
}

.about-section {
    padding: 20px 0;
    background-color: #FFFFFF;
}

.about-section h2 {
    font-size: 32px;
    font-weight: bold;
    color: #333333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-content {
    padding: 0;
    background-color: #FFFFFF;
}

.about-text p {
    font-size: 20px;
    line-height: 2.0;
    color: #333333;
    margin-bottom: 20px;
}

.about-text p.lead-text {
    font-weight: bold;
}

.about-layout {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
}

.about-image img {
    border-radius: 8px;
    width: 100%;
}

.credentials {
    background-color: #FFFFFF;
    padding: 40px 0;
}

.credentials h2 {
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
    color: #333333;
}

.credentials-list {
    max-width: 600px;
    margin: 0 auto;
    list-style: none;
    padding: 0;
}

.credentials-list li {
    font-size: 18px;
    color: #333333;
    padding: 15px 0;
    border-bottom: 1px solid #cccccc;
    text-align: center;
}

.credentials-list li:last-child {
    border-bottom: none;
}

.about-cta {
    background-color: #FFFFFF;
    padding: 50px 0;
    text-align: center;
}

.about-cta h2 {
    font-size: 28px;
    font-weight: bold;
    color: #333333;
    margin-bottom: 25px;
}

.about-cta .cta-button {
    display: inline-block;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Desktop About Page */
@media (min-width: 768px) {
    .about-hero {
        padding: 30px 0 0 0;
    }

    .about-hero h1 {
        font-size: 42px;
    }

    .about-subheadline {
        font-size: 22px;
        letter-spacing: 1.5px;
    }

    .about-content {
        padding: 0;
    }

    .about-layout {
        flex-direction: row;
        align-items: flex-start;
        gap: 50px;
    }


    .credentials {
        padding: 60px 0;
    }

    .credentials h2 {
        font-size: 36px;
    }

    .about-cta {
        padding: 70px 0;
    }

    .about-cta h2 {
        font-size: 36px;
    }

    .about-section {
        padding: 15px 0 25px 0;
    }

    .about-section h2 {
        font-size: 42px;
    }

    .about-text-full p {
        font-size: 20px;
    }

    .about-text-full ul li {
        font-size: 20px;
    }

    .lead-text {
        font-size: 20px;
    }
}

/* ===================================
   FAQ Page
   =================================== */
.faq-content {
    padding: 20px 0 40px 0;
    background-color: #FFFFFF;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #E0E0E0;
    border-radius: 5px;
    background-color: #FFFFFF;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background-color: #F5F5F5;
    border: none;
    padding: 18px 20px;
    text-align: left;
    font-size: 17px;
    font-weight: bold;
    color: #333333;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
    font-family: Arial, Helvetica, sans-serif;
}

.faq-question:hover {
    background-color: #E8E8E8;
}

.faq-question[aria-expanded="true"] {
    background-color: #0066CC;
    color: #FFFFFF;
}

.faq-icon {
    font-size: 24px;
    font-weight: bold;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer.active {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 20px;
    margin: 0 0 12px 0;
    font-size: 16px;
    line-height: 1.7;
    color: #333333;
}

.faq-answer p:first-child {
    padding-top: 20px;
}

.faq-answer p:last-child {
    padding-bottom: 20px;
    margin-bottom: 0;
}

/* Desktop FAQ */
@media (min-width: 768px) {
    .faq-content {
        padding: 30px 0 60px 0;
    }

    .faq-question {
        font-size: 18px;
        padding: 20px 25px;
    }

    .faq-answer p {
        padding: 25px;
        font-size: 17px;
    }
}

/* ===================================
   Booking Page
   =================================== */
.booking-section {
    padding: 40px 0;
    background-color: #FFFFFF;
}

.booking-container {
    max-width: 800px;
    margin: 0 auto;
}

.booking-step {
    display: none;
}

.booking-step.active {
    display: block;
}

.booking-step h2 {
    font-size: 24px;
    font-weight: bold;
    color: #333333;
    margin-bottom: 10px;
}

.step-description {
    font-size: 16px;
    color: #666666;
    margin-bottom: 30px;
}

.booking-form {
    margin-bottom: 30px;
}

.info-message {
    background-color: #E3F2FD;
    border: 1px solid: #0066CC;
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    margin-top: 30px;
}

.info-message h3 {
    font-size: 22px;
    color: #333333;
    margin-bottom: 15px;
}

.info-message p {
    font-size: 16px;
    color: #333333;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Calendar Styles */
.calendar-container {
    margin-bottom: 30px;
}

.calendar-day {
    margin-bottom: 25px;
}

.calendar-day-header {
    font-size: 18px;
    font-weight: bold;
    color: #333333;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 2px solid #0066CC;
}

.time-slots {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 10px;
}

.time-slot {
    background-color: #F5F5F5;
    border: 2px solid #E0E0E0;
    padding: 12px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    color: #333333;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
}

.time-slot:hover:not(.disabled) {
    background-color: #E8F4FD;
    border-color: #0066CC;
}

.time-slot.selected {
    background-color: #0066CC;
    border-color: #0066CC;
    color: #FFFFFF;
}

.time-slot.disabled {
    background-color: #F9F9F9;
    color: #CCCCCC;
    cursor: not-allowed;
    border-color: #F0F0F0;
}

/* Session Type Cards */
.session-type-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.session-type-card {
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
}

.session-type-card:hover {
    border-color: #0066CC;
    background-color: #F9FBFD;
}

.session-type-card input[type="radio"] {
    display: none;
}

.session-type-card input[type="radio"]:checked + .session-card-content {
    border-left: 4px solid #0066CC;
    padding-left: 16px;
}

.session-type-card input[type="radio"]:checked ~ .session-card-content h3 {
    color: #0066CC;
}

.session-card-content h3 {
    font-size: 20px;
    font-weight: bold;
    color: #333333;
    margin-bottom: 8px;
}

.session-card-content p {
    font-size: 15px;
    font-weight: bold;
    color: #666666;
    margin-bottom: 12px;
}

.session-card-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.session-card-content ul li {
    padding: 6px 0;
    font-size: 14px;
    color: #333333;
}

/* Booking Summary */
.booking-summary {
    background-color: #F5F5F5;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
}

.booking-summary h3 {
    font-size: 20px;
    font-weight: bold;
    color: #333333;
    margin-bottom: 15px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #E0E0E0;
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-item.total {
    font-size: 18px;
    font-weight: bold;
    margin-top: 10px;
    padding-top: 15px;
    border-top: 2px solid #333333;
}

/* Payment Form */
.payment-form {
    margin-bottom: 30px;
}

.stripe-element {
    background-color: #FFFFFF;
    border: 1px solid #cccccc;
    border-radius: 5px;
    padding: 12px;
    font-size: 16px;
}

.payment-error {
    color: #CC0000;
    font-size: 14px;
    margin-top: 8px;
}

/* Form Actions */
.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.btn-secondary {
    background-color: #F5F5F5;
    color: #333333;
    font-size: 16px;
    font-weight: bold;
    padding: 15px 30px;
    border: 2px solid #E0E0E0;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #E8E8E8;
    border-color: #CCCCCC;
}

/* Desktop Booking Page */
@media (min-width: 768px) {
    .booking-section {
        padding: 60px 0;
    }

    .booking-step h2 {
        font-size: 28px;
    }

    .step-description {
        font-size: 17px;
    }

    .time-slots {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 12px;
    }

    .session-type-options {
        flex-direction: row;
    }

    .session-type-card {
        flex: 1;
    }

    .form-actions {
        justify-content: flex-end;
    }
}
