 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 :root {
     --night: #0F1113;
     --white: #FFFFFF;
     --seasalt: #F7F9FA;
     --davy-gray: #4F5566;
     --rust: #B65A30;
 }

 body {
     font-family: 'Arial', sans-serif;
     line-height: 1.6;
     color: var(--night);
     background-color: var(--seasalt);
 }

 /* Navigation */
 nav {
     position: fixed;
     top: 0;
     width: 100%;
     background: rgba(247, 249, 250, 0.95);
     backdrop-filter: blur(10px);
     z-index: 1000;
     padding: 1rem 0;
     border-bottom: 1px solid rgba(79, 85, 102, 0.1);
 }

 .nav-container {
     max-width: 1200px;
     margin: 0 auto;
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 0 2rem;
 }

 .logo {
     font-size: 1.5rem;
     font-weight: bold;
     color: var(--night);
     text-decoration: none;
 }

 .nav-links {
     display: flex;
     gap: 2rem;
     list-style: none;
 }

 .nav-links a {
     text-decoration: none;
     color: var(--davy-gray);
     font-weight: 500;
     transition: color 0.3s ease;
 }

 .nav-links a:hover {
     color: var(--rust);
 }

 /* Hero Section */
 .hero {
     height: 100vh;
     display: flex;
     align-items: center;
     justify-content: center;
     text-align: center;
     background: linear-gradient(135deg, var(--seasalt) 0%, var(--white) 100%);
     position: relative;
     overflow: hidden;
 }

 .hero::before {
     content: '';
     position: absolute;
     top: -50%;
     right: -20%;
     width: 40%;
     height: 200%;
     background: var(--rust);
     opacity: 0.03;
     transform: rotate(15deg);
 }

 .hero-content {
     max-width: 900px;
     padding: 0 2rem;
     z-index: 2;
     position: relative;
 }

 .hero h1 {
     font-size: 4rem;
     font-weight: 300;
     color: var(--night);
     margin-bottom: 1rem;
     letter-spacing: -2px;
 }

 .hero .subtitle {
     font-size: 1.8rem;
     color: var(--rust);
     margin-bottom: 1.5rem;
     font-weight: 500;
 }

 .hero .description {
     font-size: 1.2rem;
     color: var(--davy-gray);
     margin-bottom: 3rem;
     line-height: 1.7;
     max-width: 700px;
     margin-left: auto;
     margin-right: auto;
 }

 .cta-button {
     display: inline-block;
     padding: 1rem 2.5rem;
     background-color: var(--rust);
     color: var(--white);
     text-decoration: none;
     border-radius: 50px;
     font-weight: 500;
     transition: all 0.3s ease;
     box-shadow: 0 4px 15px rgba(182, 90, 48, 0.3);
     margin-right: 1rem;
 }

 .cta-button:hover {
     transform: translateY(-2px);
     box-shadow: 0 8px 25px rgba(182, 90, 48, 0.4);
 }

 .cta-secondary {
     display: inline-block;
     padding: 1rem 2.5rem;
     background-color: transparent;
     color: var(--davy-gray);
     text-decoration: none;
     border: 2px solid var(--davy-gray);
     border-radius: 50px;
     font-weight: 500;
     transition: all 0.3s ease;
 }

 .cta-secondary:hover {
     background-color: var(--davy-gray);
     color: var(--white);
 }

 /* Problem Section */
 .problem {
     padding: 6rem 0;
     background: var(--white);
 }

 .container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 2rem;
 }

 .section-title {
     text-align: center;
     font-size: 2.5rem;
     color: var(--night);
     margin-bottom: 1rem;
     font-weight: 300;
 }

 .section-subtitle {
     text-align: center;
     font-size: 1.3rem;
     color: var(--rust);
     margin-bottom: 3rem;
     font-weight: 500;
 }

 .problem-stats {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 2rem;
     margin: 4rem 0;
 }

 .stat-card {
     text-align: center;
     padding: 2rem;
     background: var(--seasalt);
     border-radius: 15px;
     border-left: 4px solid var(--rust);
 }

 .stat-number {
     font-size: 3rem;
     font-weight: bold;
     color: var(--rust);
     display: block;
 }

 .stat-text {
     color: var(--davy-gray);
     font-size: 1.1rem;
     margin-top: 0.5rem;
 }

 /* Skills Section */
 .skills {
     padding: 6rem 0;
     background: var(--seasalt);
 }

 .skills-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: 2rem;
     margin-top: 4rem;
 }

 .skill-card {
     background: var(--white);
     padding: 2.5rem 2rem;
     border-radius: 15px;
     text-align: left;
     box-shadow: 0 5px 20px rgba(15, 17, 19, 0.08);
     transition: all 0.3s ease;
     border-top: 4px solid var(--rust);
 }

 .skill-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 15px 40px rgba(15, 17, 19, 0.15);
 }

 .skill-icon {
     width: 60px;
     height: 60px;
     background: var(--rust);
     border-radius: 50%;
     margin-bottom: 1.5rem;
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--white);
     font-size: 1.5rem;
 }

 .skill-card h3 {
     color: var(--night);
     margin-bottom: 1rem;
     font-size: 1.3rem;
 }

 .skill-card p {
     color: var(--davy-gray);
     line-height: 1.7;
     margin-bottom: 1rem;
 }

 .skill-topics {
     display: flex;
     flex-wrap: wrap;
     gap: 0.5rem;
 }

 .topic-tag {
     background: var(--seasalt);
     color: var(--rust);
     padding: 0.3rem 0.8rem;
     border-radius: 20px;
     font-size: 0.9rem;
     font-weight: 500;
 }

 /* Testimonial Section */
 .testimonials {
     padding: 6rem 0;
     background: linear-gradient(135deg, var(--night) 0%, var(--davy-gray) 100%);
     color: var(--white);
 }

 .testimonials .section-title {
     color: var(--white);
 }

 .testimonials .section-subtitle {
     color: var(--seasalt);
 }

 .testimonial-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 2rem;
     margin-top: 4rem;
 }

 .testimonial-card {
     background: rgba(255, 255, 255, 0.1);
     padding: 2rem;
     border-radius: 15px;
     backdrop-filter: blur(10px);
     border: 1px solid rgba(255, 255, 255, 0.2);
 }

 .testimonial-text {
     font-size: 1.1rem;
     line-height: 1.6;
     margin-bottom: 1.5rem;
     font-style: italic;
 }

 .testimonial-author {
     font-weight: bold;
     color: var(--seasalt);
 }

 .testimonial-role {
     color: rgba(247, 249, 250, 0.8);
     font-size: 0.9rem;
 }

 /* CTA Section */
 .final-cta {
     padding: 6rem 0;
     background: var(--white);
     text-align: center;
 }

 .cta-content {
     max-width: 600px;
     margin: 0 auto;
 }

 .cta-title {
     font-size: 2.5rem;
     color: var(--night);
     margin-bottom: 1rem;
     font-weight: 300;
 }

 .cta-description {
     font-size: 1.2rem;
     color: var(--davy-gray);
     margin-bottom: 2rem;
     line-height: 1.6;
 }

 .email-signup {
     display: flex;
     max-width: 400px;
     margin: 2rem auto;
     gap: 1rem;
 }

 .email-input {
     flex: 1;
     padding: 1rem;
     border: 2px solid var(--seasalt);
     border-radius: 50px;
     font-size: 1rem;
     outline: none;
     transition: border-color 0.3s ease;
 }

 .email-input:focus {
     border-color: var(--rust);
 }

 .email-submit {
     padding: 1rem 2rem;
     background: var(--rust);
     color: var(--white);
     border: none;
     border-radius: 50px;
     font-weight: 500;
     cursor: pointer;
     transition: background 0.3s ease;
 }

 .email-submit:hover {
     background: #a14a26;
 }

 /* Footer */
 footer {
     background: var(--night);
     color: var(--seasalt);
     text-align: center;
     padding: 3rem 0;
 }

 .footer-content {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 2rem;
 }

 .footer-links {
     display: flex;
     justify-content: center;
     gap: 2rem;
     margin-bottom: 2rem;
     flex-wrap: wrap;
 }

 .footer-links a {
     color: var(--seasalt);
     text-decoration: none;
     transition: color 0.3s ease;
 }

 .footer-links a:hover {
     color: var(--rust);
 }

 .logo img {
     width: 140px;
     height: auto;

 }

 /* About Section */
/* About Section */
.about {
    padding: 6rem 0;
    background: var(--white);
}

.about-content {
    max-width: 800px;
    margin: 0 auto 4rem auto;
    font-size: 1.1rem;
    color: var(--davy-gray);
    line-height: 1.8;
    text-align: center;
}

/* Founders Grid */
.founders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    align-items: flex-start;
}

.founder-card {
    background: var(--seasalt);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(15, 17, 19, 0.06);
    transition: all 0.3s ease;
}

.founder-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(15, 17, 19, 0.1);
}

.founder-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}

.founder-card h3 {
    margin-bottom: 0.3rem;
    color: var(--night);
    font-size: 1.2rem;
}

.founder-role {
    color: var(--rust);
    font-weight: 500;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.founder-card p {
    font-size: 1rem;
    color: var(--davy-gray);
    line-height: 1.6;
}



 /* Responsive */
 @media (max-width: 768px) {
     .nav-links {
         display: none;
     }

     .hero h1 {
         font-size: 2.5rem;
     }

     .hero .subtitle {
         font-size: 1.4rem;
     }

     .hero .description {
         font-size: 1.1rem;
     }

     .cta-button,
     .cta-secondary {
         display: block;
         margin: 0.5rem auto;
         text-align: center;
     }

     .email-signup {
         flex-direction: column;
         max-width: 300px;
     }

     .problem-stats,
     .skills-grid,
     .testimonial-grid {
         grid-template-columns: 1fr;
     }
 }

 .hero{
    margin-top: 40px;
 }
 /* Smooth scrolling */
 html {
     scroll-behavior: smooth;
 }

 /* Animations */
 .fade-in {
     opacity: 0;
     transform: translateY(30px);
     transition: all 0.6s ease;
 }

 .fade-in.visible {
     opacity: 1;
     transform: translateY(0);
 }
 .form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    max-width: 600px;
    margin: 2rem auto;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.email-input,
.email-signup select {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--seasalt);
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
    appearance: none;
    background: white;
    color: var(--night);
}

.email-input:focus,
.email-signup select:focus {
    border-color: var(--rust);
}

.email-submit {
    padding: 1rem 2rem;
    background: var(--rust);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
    grid-column: span 2;
}

.email-submit:hover {
    background: #a14a26;
}

@media (max-width: 600px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .email-submit {
        grid-column: span 1;
    }
}


/* Additional styles for the selection page */
    .selection-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .selection-card {
      background: var(--white);
      padding: 2.5rem 2rem;
      border-radius: 15px;
      text-align: center;
      box-shadow: 0 5px 20px rgba(15, 17, 19, 0.08);
      transition: all 0.3s ease;
      border: 2px solid transparent;
      cursor: pointer;
      position: relative;
      overflow: hidden;
    }

    .selection-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 40px rgba(15, 17, 19, 0.15);
      border-color: var(--rust);
    }

    .selection-card.selected {
      border-color: var(--rust);
      background: var(--seasalt);
      transform: translateY(-10px);
    }

    .selection-icon {
      width: 80px;
      height: 80px;
      background: var(--rust);
      border-radius: 50%;
      margin: 0 auto 1.5rem auto;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      transition: all 0.3s ease;
    }

    .selection-card:hover .selection-icon {
      transform: scale(1.1);
    }

    .selection-card h3 {
      color: var(--night);
      margin-bottom: 1rem;
      font-size: 1.4rem;
      font-weight: 500;
    }

    .selection-card p {
      color: var(--davy-gray);
      line-height: 1.7;
      margin-bottom: 1.5rem;
      font-size: 1.1rem;
    }

    .selection-topics {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      justify-content: center;
    }

    .selection-topics .topic-tag {
      background: var(--seasalt);
      color: var(--rust);
      padding: 0.3rem 0.8rem;
      border-radius: 20px;
      font-size: 0.9rem;
      font-weight: 500;
      transition: all 0.3s ease;
    }

    .selection-card:hover .topic-tag {
      background: var(--rust);
      color: var(--white);
    }

    .selection-card.selected .topic-tag {
      background: var(--rust);
      color: var(--white);
    }

/* Next Course Section */
.next-course {
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--rust) 0%, #a14a26 100%);
    color: var(--white);
}

.next-course-content {
    max-width: 800px;
    margin: 0 auto;
}

.course-announcement {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.course-title {
    font-size: 1.5rem;
    color: var(--seasalt);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 300;
}

.course-name {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 600;
}

.course-subtitle {
    font-size: 1.2rem;
    color: var(--seasalt);
    margin-bottom: 2.5rem;
    font-style: italic;
}

.course-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
    text-align: left;
}

.course-details-grid {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
    align-items: stretch;
    flex-wrap: nowrap;
}

.course-info-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem 1rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, background 0.3s ease;
    flex: 1;
    min-width: 0;
    height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.course-info-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.course-info-card .info-icon {
    margin: 0 auto 1rem auto;
    width: 24px;
    height: 24px;
    color: var(--white);
    opacity: 0.9;
}

.course-info-card h4 {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.course-info-card p {
    color: var(--seasalt);
    font-size: 0.95rem;
    opacity: 0.9;
}

.course-button-container {
    text-align: center;
    margin: 2rem 0;
}

.course-cta-button {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.course-cta-button:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

/* Course Modules Section */
.course-modules {
    background: var(--seasalt);
    padding: 4rem 0;
}

.modules-content {
    text-align: center;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.module-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(15, 17, 19, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.module-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(15, 17, 19, 0.15);
}

.module-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--rust);
}

.module-header h3 {
    color: var(--night);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.module-sections {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.section-item {
    background: rgba(182, 90, 48, 0.05);
    padding: 1rem;
    border-radius: 10px;
    border-left: 4px solid var(--rust);
    transition: background 0.3s ease;
}

.section-item:hover {
    background: rgba(182, 90, 48, 0.1);
}

.section-item h4 {
    color: var(--davy-gray);
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

.graduation-module {
    background: var(--white);
}

.graduation-module .module-header {
    border-bottom-color: var(--rust);
}

.graduation-module .module-header h3 {
    color: var(--night);
}

/* Pricing Banner - Fresh Design */
.pricing-banner {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    border-radius: 15px;
    padding: 2.5rem;
    margin: 2rem 0;
    border: 2px solid rgba(182, 90, 48, 0.2);
}

.pricing-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.price-highlight {
    flex: 0 0 auto;
    text-align: center;
}

.price-label {
    color: var(--davy-gray);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-strike {
    margin-bottom: 0.5rem;
}

.old-price {
    color: var(--davy-gray);
    font-size: 0.9rem;
    text-decoration: line-through;
    opacity: 0.6;
}

.current-pricing {
    margin-bottom: 0;
}

.price-large {
    color: var(--rust);
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(182, 90, 48, 0.2);
}

.pricing-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.guarantee-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(40, 167, 69, 0.1);
    padding: 1rem;
    border-radius: 10px;
    border-left: 4px solid #28a745;
}

.badge-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.badge-text {
    color: var(--night);
    font-size: 0.9rem;
    line-height: 1.4;
    font-weight: 500;
}

.call-to-action {
    text-align: left;
}

.action-text {
    color: var(--rust);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.action-text strong {
    font-weight: 800;
    text-transform: uppercase;
}

.enroll-button {
    background: var(--rust);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.enroll-button:hover {
    background: #9a4a24;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(182, 90, 48, 0.3);
}

.validity-notice {
    text-align: left;
}

.notice-text {
    color: var(--davy-gray);
    font-size: 0.85rem;
    font-style: italic;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .pricing-banner {
        padding: 1.5rem;
        margin: 1rem 0;
    }
    
    .pricing-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .price-highlight {
        order: 1;
    }
    
    .pricing-details {
        order: 2;
    }
    
    .price-large {
        font-size: 2.5rem;
    }
    
    .guarantee-badge {
        text-align: left;
    }
    
    .call-to-action {
        text-align: center;
    }
    
    .validity-notice {
        text-align: center;
    }
    
    .enroll-button {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }
}

/* Professor Section - Compact */
.professor-section {
    background: var(--seasalt);
    padding: 3rem 0;
}

.professor-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.professor-info {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(15, 17, 19, 0.1);
    margin-top: 1.5rem;
}

.professor-main {
    display: flex;
    align-items: center;
    gap: 2rem;
    text-align: left;
}

.professor-image {
    flex-shrink: 0;
}

.professor-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--rust);
    box-shadow: 0 4px 15px rgba(182, 90, 48, 0.3);
}

.professor-bio {
    flex: 1;
}

.professor-name {
    color: var(--night);
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
}

.credentials-compact {
    margin-bottom: 1.5rem;
}

.credentials-compact p {
    color: var(--davy-gray);
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0.3rem 0;
}

.credentials-compact strong {
    color: var(--rust);
    font-weight: 700;
}

.experience-brief p {
    color: var(--davy-gray);
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 0.5rem 0;
}

.experience-brief p:first-child {
    font-weight: 600;
    color: var(--night);
}

.experience-brief em {
    font-style: italic;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .professor-section {
        padding: 2rem 0;
    }
    
    .professor-info {
        padding: 1.5rem;
    }
    
    .professor-main {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .professor-photo {
        width: 100px;
        height: 100px;
    }
    
    .professor-name {
        font-size: 1.5rem;
    }
    
    .credentials-compact p {
        font-size: 0.8rem;
    }
    
    .experience-brief p {
        font-size: 0.8rem;
    }
}

/* Consultation Section */
.consultation-section {
    background: linear-gradient(135deg, var(--rust) 0%, #a14a26 100%);
    padding: 2.5rem 0;
}

.consultation-content {
    text-align: center;
}

.consultation-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    max-width: 500px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.consultation-card h3 {
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.consultation-card p {
    color: var(--seasalt);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.calendly-button {
    background: var(--white);
    color: var(--rust);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.calendly-button:hover {
    background: var(--seasalt);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .consultation-section {
        padding: 2rem 0;
    }
    
    .consultation-card {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .consultation-card h3 {
        font-size: 1.2rem;
    }
    
    .consultation-card p {
        font-size: 0.9rem;
    }
    
    .calendly-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

.info-label {
    font-weight: 500;
    color: var(--seasalt);
}

/* Waitlist Page Styles */
.waitlist-section {
    background: var(--seasalt);
    padding: 4rem 0;
    margin-top: 50px;
}

.waitlist-content {
    display: flex;
    justify-content: center;
    max-width: 1100px;
    margin: 0 auto;
}

.waitlist-form-container-centered {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 40px rgba(15, 17, 19, 0.1);
    border-top: 4px solid var(--rust);
    max-width: 500px;
    width: 100%;
}

.waitlist-form h3 {
    color: var(--night);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-input {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(79, 85, 102, 0.2);
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: var(--seasalt);
}

.form-input:focus {
    outline: none;
    border-color: var(--rust);
    background: var(--white);
}

.form-input::placeholder {
    color: var(--davy-gray);
}

.waitlist-submit {
    width: 100%;
    background: var(--rust);
    color: var(--white);
    padding: 1.2rem;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.waitlist-submit:hover {
    background: #9a4a24;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(182, 90, 48, 0.3);
}

.waitlist-submit:disabled {
    cursor: not-allowed;
    transform: none;
}

.form-note {
    color: var(--davy-gray);
    font-size: 0.85rem;
    text-align: center;
    line-height: 1.4;
    margin: 0;
}

@media (max-width: 768px) {
    .waitlist-content {
        padding: 0 1rem;
    }
    
    .waitlist-form-container-centered {
        max-width: 100%;
        padding: 2rem 1.5rem;
    }
}

.info-value {
    font-weight: 600;
    color: var(--white);
}

.course-highlights {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid var(--white);
}

.course-highlights h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.course-highlights ul {
    list-style: none;
    padding: 0;
}

.course-highlights li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--seasalt);
}

.course-highlights li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--white);
    font-weight: bold;
}

.course-cta {
    text-align: center;
}

.pricing {
    margin-bottom: 1.5rem;
}

.price-original {
    font-size: 1.2rem;
    color: var(--seasalt);
    text-decoration: line-through;
    margin-right: 1rem;
}

.price-current {
    font-size: 2rem;
    color: var(--white);
    font-weight: bold;
}

.price-note {
    display: block;
    color: var(--seasalt);
    font-size: 0.9rem;
    margin-top: 0.5rem;
    font-style: italic;
}

.course-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--white);
    color: var(--rust);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin-bottom: 1rem;
}

.course-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background: var(--seasalt);
}

.urgency-text {
    color: var(--white);
    font-weight: 500;
    font-size: 0.9rem;
    margin: 0;
}

/* Mobile responsiveness for next course */
@media (max-width: 768px) {
    .course-details {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .course-name {
        font-size: 2rem;
    }
    
    .course-announcement {
        padding: 2rem 1.5rem;
    }
}

    /* Mobile responsiveness */
    @media (max-width: 768px) {
      .selection-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
      }

      .selection-card {
        padding: 2rem 1.5rem;
      }

      .hero h1 {
        font-size: 2rem !important;
      }

      .hero .subtitle {
        font-size: 1.3rem;
      }

      .hero .description {
        font-size: 1rem;
      }
    }