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

    :root {
      --solar-orange: #F5A623;
      --solar-orange-dark: #F4A000;
      --charcoal: #1a1a1a;
      --soft-green: #10b981;
      --cream: #fffdf7;
      --warm-white: #fefcf8;
      --light-gray: #f5f5f5;
      --border-gray: #e5e5e5;
      --text-gray: #6b7280;
    }

    body {
      font-family: 'Sora', sans-serif;
      background: linear-gradient(180deg, var(--warm-white) 0%, var(--cream) 100%);
      color: var(--charcoal);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

    .landing-page {
      min-height: 100vh;
    }

    /* Navigation */
    nav {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(255, 253, 247, 0.95);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border-gray);
      transition: all 0.3s ease;
    }

    nav.scrolled {
      background: rgba(255, 253, 247, 0.98);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

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

    .nav-logo {
      font-family: 'Crimson Pro', serif;
      font-size: clamp(1rem, 2.5vw, 1.5rem);
      font-weight: 700;
      color: var(--charcoal);
      letter-spacing: -0.02em;
      cursor: pointer;
      display: flex;
      align-items: center;
    }

    .nav-logo-icon {
      display: inline-block;
      width: clamp(32px, 5vw, 40px);
      height: clamp(32px, 5vw, 40px);
      background: linear-gradient(135deg, var(--solar-orange) 0%, var(--solar-orange-dark) 100%);
      border-radius: 50%;
      margin-right: 0.75rem;
    }

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

    .nav-links a {
      color: var(--charcoal);
      text-decoration: none;
      font-size: 0.95rem;
      font-weight: 500;
      transition: color 0.3s ease;
      position: relative;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--solar-orange);
      transition: width 0.3s ease;
    }

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

    .nav-links a:hover::after {
      width: 100%;
    }

    .nav-cta {
      background: var(--solar-orange);
      color: white;
      padding: 0.75rem 2rem;
      border-radius: 50px;
      border: none;
      font-size: 0.95rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 4px 16px rgba(245, 166, 35, 0.25);
    }

    .nav-cta:hover {
      background: var(--solar-orange-dark);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(245, 166, 35, 0.35);
    }

    /* Hero Section */
    .hero {
      max-width: 1200px;
      margin: 0 auto;
      padding: 6rem 2rem 8rem;
      text-align: center;
      position: relative;
    }

    .enrollment-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: white;
      border: 1px solid rgba(16, 185, 129, 0.2);
      border-radius: 50px;
      padding: 0.5rem 1.25rem;
      margin-bottom: 2rem;
      animation: fadeInDown 0.8s ease-out;
      flex-wrap: wrap;
      justify-content: center;
    }

    

    .countdown-number {
      font-family: 'Crimson Pro', serif;
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--solar-orange);
      line-height: 1;
    }

   

    @keyframes fadeInDown {
      from {
        opacity: 0;
        transform: translateY(-20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .green-dot {
      width: 8px;
      height: 8px;
      background: var(--soft-green);
      border-radius: 50%;
      animation: pulse 2s ease-in-out infinite;
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.5; }
    }

    .enrollment-badge span {
      font-size: 0.875rem;
      font-weight: 500;
      color: var(--charcoal);
    }

    .badge-countdown {
      font-size: 0.75rem;
      color: var(--solar-orange);
      font-weight: 600;
      margin-left: 0.5rem;
      white-space: nowrap;
    }

    .badge-divider {
      margin: 0 0.5rem;
      color: rgba(26, 26, 26, 0.3);
    }

    .hero-headline {
      font-family: 'Crimson Pro', serif;
      font-size: 4.5rem;
      font-weight: 700;
      line-height: 1.15;
      margin-bottom: 2.5rem;
      color: var(--charcoal);
      letter-spacing: -0.03em;
      animation: fadeInUp 0.8s ease-out 0.2s both;
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .hero-headline .highlight {
      color: var(--solar-orange);
      display: block;
    }

    .hero-card {
      max-width: 700px;
      margin: 0 auto 3rem;
      background: white;
      border-radius: 24px;
      padding: 2rem 2.5rem;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
      border: 1px solid var(--border-gray);
      animation: fadeInUp 0.8s ease-out 0.4s both;
    }

    .hero-card-subtext {
      font-size: 0.875rem;
      color: var(--text-gray);
      margin-bottom: 0.75rem;
    }

    .hero-card-main {
      font-size: 1.5rem;
      font-weight: 600;
      color: var(--charcoal);
      line-height: 1.4;
    }

    .cta-buttons {
      display: flex;
      gap: 1rem;
      justify-content: center;
      margin-bottom: 2rem;
      animation: fadeInUp 0.8s ease-out 0.6s both;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: var(--solar-orange);
      color: white;
      padding: 1rem 2.5rem;
      border-radius: 50px;
      border: none;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 6px 24px rgba(245, 166, 35, 0.3);
    }

    .btn-primary:hover {
      background: var(--solar-orange-dark);
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(245, 166, 35, 0.4);
    }

    .btn-secondary {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: white;
      color: var(--charcoal);
      padding: 1rem 2.5rem;
      border-radius: 50px;
      border: 1px solid var(--border-gray);
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .btn-secondary:hover {
      border-color: var(--solar-orange);
      color: var(--solar-orange);
      transform: translateY(-2px);
    }

    .social-proof {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.75rem;
      font-size: 0.95rem;
      color: var(--text-gray);
      animation: fadeInUp 0.8s ease-out 0.8s both;
    }

    /* Floating Solar Panels */
    .floating-panel {
      position: absolute;
      animation: float 8s ease-in-out infinite;
      opacity: 0.4;
      transition: opacity 0.3s ease;
    }

    .floating-panel:hover {
      opacity: 0.6;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0) rotate(0deg); }
      50% { transform: translateY(-15px) rotate(3deg); }
    }

    .panel-1 {
      top: 15%;
      left: 10%;
      animation-delay: 0s;
    }

    .panel-2 {
      top: 25%;
      right: 12%;
      animation-delay: 2.5s;
    }

    .panel-3 {
      bottom: 20%;
      left: 15%;
      animation-delay: 5s;
    }

    .solar-panel-icon {
      width: 32px;
      height: 32px;
      background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
      border-radius: 4px;
      position: relative;
      box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: repeat(3, 1fr);
      gap: 1.5px;
      padding: 3px;
      border: 1px solid rgba(30, 58, 138, 0.3);
    }

    .solar-panel-icon::before {
      content: '';
      position: absolute;
      top: -2px;
      left: -2px;
      right: -2px;
      bottom: -2px;
      background: linear-gradient(135deg, rgba(245, 166, 35, 0.3) 0%, rgba(251, 191, 36, 0.2) 100%);
      border-radius: 4px;
      z-index: -1;
    }

    .solar-cell {
      background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
      border-radius: 1px;
      border: 0.5px solid rgba(59, 130, 246, 0.4);
      position: relative;
    }

    .solar-cell::after {
      content: '';
      position: absolute;
      top: 1px;
      left: 1px;
      right: 1px;
      bottom: 1px;
      background: linear-gradient(135deg, transparent 0%, rgba(147, 197, 253, 0.3) 100%);
      border-radius: 1px;
    }

    /* Why Solar Section */
    .why-solar {
      padding: 6rem 2rem;
      background: white;
    }

    .section-label {
      text-align: center;
      font-size: 0.875rem;
      font-weight: 600;
      color: var(--solar-orange);
      letter-spacing: 0.15em;
      text-transform: uppercase;
      margin-bottom: 1rem;
    }

    .section-heading {
      text-align: center;
      font-family: 'Crimson Pro', serif;
      font-size: 3rem;
      font-weight: 700;
      color: var(--charcoal);
      margin-bottom: 1rem;
      letter-spacing: -0.02em;
    }

    .section-subheading {
      text-align: center;
      font-size: 1.25rem;
      color: var(--text-gray);
      max-width: 600px;
      margin: 0 auto 4rem;
    }

    .features-grid {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }

    .feature-card {
      background: var(--warm-white);
      border-radius: 20px;
      padding: 2.5rem;
      border: 1px solid var(--border-gray);
      transition: all 0.3s ease;
      position: relative;
    }

    .feature-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
      border-color: var(--solar-orange);
    }

    .feature-number {
      font-family: 'Crimson Pro', serif;
      font-size: 3rem;
      font-weight: 700;
      color: rgba(245, 166, 35, 0.15);
      position: absolute;
      top: 1.5rem;
      right: 2rem;
    }

    .feature-icon {
      width: 56px;
      height: 56px;
      background: linear-gradient(135deg, var(--solar-orange) 0%, var(--solar-orange-dark) 100%);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      margin-bottom: 1.5rem;
    }

    .feature-title {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--charcoal);
      margin-bottom: 0.75rem;
    }

    .feature-description {
      color: var(--text-gray);
      line-height: 1.7;
    }

    
    /* Real Results Section */
    .real-results {
      padding: 6rem 2rem;
      background: var(--light-gray);
    }

    .results-grid {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
    }

    .transformation-card {
      background: white;
      border-radius: 24px;
      padding: 2.5rem;
      border: 1px solid var(--border-gray);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
      position: relative;
    }

    .profile-section {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 2rem;
    }

    .profile-photo {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      overflow: hidden;
      flex-shrink: 0;
      background: var(--light-gray);
    }

    .profile-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .before-label {
      display: inline-block;
      background: var(--light-gray);
      color: var(--text-gray);
      padding: 0.25rem 0.75rem;
      border-radius: 20px;
      font-size: 0.75rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .before-text {
      font-size: 1.125rem;
      color: var(--text-gray);
      margin: 0.5rem 0;
    }

    .before-subtext {
      font-size: 0.95rem;
      color: var(--text-gray);
    }

    .arrow-divider {
      text-align: center;
      margin: 1.5rem 0;
      color: var(--text-gray);
      font-size: 0.95rem;
      position: relative;
    }

    .arrow-divider::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 0;
      right: 0;
      height: 1px;
      background: var(--border-gray);
      transform: translateY(-50%);
    }

    .arrow-divider span {
      position: relative;
      background: white;
      padding: 0 1rem;
      z-index: 1;
    }

    .after-text {
      font-size: 1.75rem;
      font-weight: 700;
      color: var(--solar-orange);
      margin-bottom: 0.5rem;
    }

    .after-subtext {
      font-size: 1.125rem;
      font-weight: 600;
      color: var(--charcoal);
    }

    /* Companies Section */
    .companies {
      padding: 6rem 2rem;
      background: white;
    }

    .companies-grid {
      max-width: 1000px;
      margin: 3rem auto 0;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2rem;
    }

    .company-card {
      background: var(--warm-white);
      border-radius: 16px;
      padding: 2rem;
      border: 1px solid var(--border-gray);
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 120px;
      transition: all 0.3s ease;
      position: relative;
    }

    .company-card:hover {
      border-color: var(--solar-orange);
      transform: translateY(-4px);
    }

    .company-card img {
      max-width: 140px;
      max-height: 70px;
      width: auto;
      height: auto;
      object-fit: contain;
      filter: grayscale(100%);
      opacity: 0.6;
      transition: all 0.3s ease;
    }

    /* ================================================
   "WHERE OUR TALENT WORK" - LOGO GRID FIX
   ================================================ */

/* Companies Section Container */
.companies-section {
    padding: 4rem 2rem;
    overflow: hidden; /* Prevent overflow */
    max-width: 100%;
}

/* Section Heading */
.companies-heading {
    text-align: center;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
    max-width: 100%;
}

/* Section Subheading */
.companies-subheading {
    text-align: center;
    color: #6B7280;
    font-size: clamp(0.875rem, 2vw, 1rem);
    margin-bottom: 3rem;
    max-width: 100%;
}

/* Logo Grid Container */
.companies-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 logos per row on desktop */
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
    width: 100%;
    box-sizing: border-box;
}

/* Individual Logo Container */
.company-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    border: 1px solid #E5E5E5;
    transition: all 0.3s ease;
    min-height: 80px;
    box-sizing: border-box;
    overflow: hidden; /* Prevent logo overflow */
}

.company-logo:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* Logo Image */
.company-logo img {
    max-width: 100%;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

/* ================================================
   RESPONSIVE BREAKPOINTS
   ================================================ */

/* Tablet (768px and below) - 2 logos per row */
@media (max-width: 768px) {
    .companies-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .company-logo {
        padding: 1.25rem;
        min-height: 70px;
    }
    
    .company-logo img {
        max-height: 50px;
    }
}

/* Mobile (576px and below) - 2 logos per row, tighter spacing */
@media (max-width: 576px) {
    .companies-section {
        padding: 3rem 1rem;
    }
    
    .companies-grid {
        gap: 1rem;
        padding: 0;
    }
    
    .company-logo {
        padding: 1rem;
        min-height: 60px;
    }
    
    .company-logo img {
        max-height: 40px;
    }
}

/* Extra small phones (400px and below) */
@media (max-width: 400px) {
    .companies-grid {
        gap: 0.75rem;
    }
    
    .company-logo {
        padding: 0.75rem;
        min-height: 50px;
    }
    
    .company-logo img {
        max-height: 35px;
    }
}

/* ================================================
   ALTERNATIVE: Single Column on Very Small Screens
   Use this if 2-column is still too tight
   ================================================ */


@media (max-width: 400px) {
    .companies-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}


    /* Award Section */
    .award-section {
      padding: 4rem 2rem;
      background: var(--light-gray);
    }

    .award-container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: center;
    }

    .award-card {
      background: linear-gradient(135deg, #fef3e2 0%, #fff9ed 100%);
      border-radius: 24px;
      padding: 3rem;
      text-align: center;
      border: 1px solid rgba(245, 166, 35, 0.2);
      box-shadow: 0 12px 40px rgba(245, 166, 35, 0.15);
    }

    .award-video {
      background: white;
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
      height: 300px;
      position: relative;
    }

    .video-container {
      position: relative;
      padding-bottom: 56.25%; /* 16:9 aspect ratio */
      height: 0;
      overflow: hidden;
      border-radius: 24px;
    }

    .video-container iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border: none;
      border-radius: 24px;
    }

    .award-icon {
      width: 80px;
      height: 80px;
      background: linear-gradient(135deg, var(--solar-orange) 0%, var(--solar-orange-dark) 100%);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      margin: 0 auto 1.5rem;
    }

    .award-title {
      font-family: 'Crimson Pro', serif;
      font-size: 2rem;
      font-weight: 700;
      color: var(--charcoal);
      margin-bottom: 0.5rem;
    }

    .award-title:hover {
      color: var(--solar-orange);
    }

    .award-subtitle {
      font-size: 1.125rem;
      color: var(--text-gray);
    }

    /* Final CTA Section */
    .final-cta {
      padding: 8rem 2rem;
      background: linear-gradient(180deg, var(--warm-white) 0%, #fff9ed 100%);
    }

    .final-cta-container {
      max-width: 900px;
      margin: 0 auto;
      text-align: center;
    }

    .final-cta-heading {
      font-family: 'Crimson Pro', serif;
      font-size: 3.5rem;
      font-weight: 700;
      color: var(--charcoal);
      margin-bottom: 3rem;
      letter-spacing: -0.02em;
    }

    .info-cards {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      margin-bottom: 3rem;
    }

    .info-card {
      background: white;
      border-radius: 20px;
      padding: 2rem 2.5rem;
      border: 1px solid var(--border-gray);
      box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
    }

    .info-card-header {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.75rem;
      margin-bottom: 1rem;
    }

    .info-card-label {
      color: var(--solar-orange);
      font-weight: 600;
      font-size: 0.95rem;
    }

    .info-card-text {
      font-size: 1.125rem;
      color: var(--charcoal);
      line-height: 1.7;
    }

    .info-card-text .highlight {
      color: var(--solar-orange);
      font-weight: 600;
    }

    .session-card {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 2rem;
      align-items: center;
      text-align: center;
    }

    .session-icon {
      width: 80px;
      height: 80px;
      background: linear-gradient(135deg, var(--solar-orange) 0%, var(--solar-orange-dark) 100%);
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
    }

    .session-content h3 {
      font-family: 'Crimson Pro', serif;
      font-size: 1.75rem;
      font-weight: 700;
      color: var(--charcoal);
      margin-bottom: 0.75rem;
      text-align: center;
    }

    .session-content p {
      color: var(--text-gray);
      margin-bottom: 1rem;
      line-height: 1.6;
      text-align: center;
    }

    .session-details {
      display: flex;
      gap: 2rem;
      font-size: 0.95rem;
      color: var(--text-gray);
      justify-content: center;
    }

    .session-detail {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    /* Countdown Timer */
    .countdown-timer {
      margin-top: 2rem;
      padding: 2rem;
      background: linear-gradient(135deg, rgba(245, 166, 35, 0.05) 0%, rgba(244, 160, 0, 0.08) 100%);
      border-radius: 16px;
      border: 1px solid rgba(245, 166, 35, 0.2);
    }

    .countdown-label {
      font-size: 0.875rem;
      font-weight: 600;
      color: var(--solar-orange);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 1rem;
      text-align: center;
    }

    .countdown-display {
      display: flex;
      justify-content: center;
      gap: 1.5rem;
    }

    .countdown-segment {
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .countdown-number {
      font-family: 'Crimson Pro', serif;
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--charcoal);
      line-height: 1;
      min-width: 60px;
      text-align: center;
    }

    .countdown-unit {
      font-size: 0.75rem;
      color: var(--text-gray);
      text-transform: uppercase;
      letter-spacing: 0.05em;
      margin-top: 0.5rem;
    }

    .countdown-divider {
      font-size: 2rem;
      color: var(--solar-orange);
      font-weight: 300;
      margin-top: 0.5rem;
    }

    .countdown-live {
      font-family: 'Crimson Pro', serif;
      font-size: 1.75rem;
      font-weight: 700;
      color: var(--soft-green);
      text-align: center;
      padding: 1rem 0;
    }

    .countdown-ended {
      font-size: 1rem;
      color: var(--text-gray);
      text-align: center;
      padding: 1rem 0;
    }

    /* Footer */
    footer {
      padding: 3rem 2rem;
      background: var(--charcoal);
      color: white;
      text-align: center;
    }

    .footer-divider {
      width: 100px;
      height: 2px;
      background: var(--solar-orange);
      margin: 1.5rem auto;
    }

    .footer-text {
      font-size: 0.95rem;
      opacity: 0.7;
    }

    /* FAQ Section */
    .faq-section {
      padding: 8rem 2rem;
      background: white;
    }

    .faq-container {
      max-width: 900px;
      margin: 0 auto;
    }

    .faq-grid {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      margin-top: 3rem;
    }

    .faq-item {
      background: var(--warm-white);
      border-radius: 16px;
      border: 1px solid var(--border-gray);
      overflow: hidden;
      transition: all 0.3s ease;
    }

    .faq-item:hover {
      border-color: var(--solar-orange);
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    }

    .faq-question {
      padding: 1.5rem 2rem;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      user-select: none;
    }

    .faq-question h3 {
      font-size: 1.125rem;
      font-weight: 600;
      color: var(--charcoal);
      margin: 0;
      flex: 1;
    }

    .faq-toggle {
      font-size: 1.75rem;
      font-weight: 300;
      color: var(--solar-orange);
      transition: transform 0.3s ease;
      margin-left: 1rem;
    }

    .faq-item.active .faq-toggle {
      transform: rotate(45deg);
    }

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

    .faq-item.active .faq-answer {
      max-height: 500px;
      padding: 0 2rem 1.5rem 2rem;
    }

    .faq-answer p {
      color: var(--text-gray);
      line-height: 1.7;
      margin: 0;
    }

    /* Icons */
    .icon {
      width: 20px;
      height: 20px;
      stroke: currentColor;
      stroke-width: 2;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

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

      .hero-headline {
        font-size: 3rem;
      }

      .features-grid {
        grid-template-columns: 1fr;
      }

      .results-grid {
        grid-template-columns: 1fr;
      }

      .companies-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .session-card {
        grid-template-columns: 1fr;
        text-align: center;
      }

      .session-details {
        justify-content: center;
      }

      .floating-panel {
        display: none;
      }

      .award-container {
        grid-template-columns: 1fr;
      }

      .award-video {
        height: 250px;
      }

      .countdown-timer {
        gap: 0.5rem;
      }

      .countdown-box {
        min-width: 40px;
      }

      .countdown-number {
        font-size: 1.25rem;
      }
    }

    @media (max-width: 640px) {
      .hero-headline {
        font-size: 2.25rem;
      }

      .section-heading {
        font-size: 2rem;
      }

      .final-cta-heading {
        font-size: 2.5rem;
      }

      .cta-buttons {
        flex-direction: column;
      }

      .faq-question h3 {
        font-size: 1rem;
      }

      .faq-question {
        padding: 1.25rem 1.5rem;
      }

      .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.25rem 1.5rem;
      }

      .countdown-number {
        font-size: 2rem;
        min-width: 50px;
      }

      .countdown-display {
        gap: 1rem;
      }

      .countdown-divider {
        font-size: 1.5rem;
      }

/* ================================================
   CEO COUNTDOWN TIMER - CSS
   ================================================ */

/* Wrapper Container */
.countdown-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
}

/* Section Heading */
.countdown-heading {
    text-align: center;
    font-size: 32px;
    margin-bottom: 10px;
    color: #1F2937;
    font-weight: 700;
}

/* Subheading */
.countdown-subheading {
    text-align: center;
    color: #6B7280;
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* Session Info Row */
.session-info {
    text-align: center;
    margin-bottom: 25px;
    font-size: 15px;
    color: #6B7280;
}

.info-item {
    display: inline-block;
    margin: 5px 10px;
}

/* Countdown Timer Box */
.countdown-timer-box {
    background: #FEF7ED;
    border-radius: 16px;
    padding: 30px 20px;
    margin-bottom: 25px;
}

/* "Session Starts In" Label */
.countdown-label {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #F59E0B;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

/* Countdown Display Container */
.countdown-display {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: nowrap;
}

/* Individual Time Unit */
.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 70px;
}

/* Time Number */
.time-number {
    font-size: 48px;
    font-weight: 700;
    color: #1F2937;
    line-height: 1;
}

/* Time Label (Days, Hours, etc) */
.time-text {
    font-size: 12px;
    font-weight: 500;
    color: #6B7280;
    text-transform: uppercase;
    margin-top: 5px;
}

/* Separator Colon */
.time-separator {
    font-size: 32px;
    font-weight: 700;
    color: #F59E0B;
    line-height: 1;
}

/* Buttons Container */
.countdown-buttons {
    text-align: center;
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Base Button Styles */
.btn {
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

/* Primary Button */
.btn-primary {
    background: #F59E0B;
    color: white;
    border-color: #F59E0B;
}

.btn-primary:hover {
    background: #D97706;
    border-color: #D97706;
}

/* Secondary Button */
.btn-secondary {
    background: transparent;
    color: #F59E0B;
    border-color: #F59E0B;
}

.btn-secondary:hover {
    background: #FEF7ED;
}

/* ================================================
   RESPONSIVE BREAKPOINTS
   ================================================ */

/* Tablet (768px and below) */
@media (max-width: 768px) {
    .countdown-heading {
        font-size: 28px;
    }
    
    .countdown-subheading {
        font-size: 15px;
    }
    
    .countdown-timer-box {
        padding: 25px 15px;
    }
    
    .countdown-display {
        gap: 12px;
    }
    
    .time-unit {
        min-width: 60px;
    }
    
    .time-number {
        font-size: 40px;
    }
    
    .time-separator {
        font-size: 28px;
    }
    
    .time-text {
        font-size: 11px;
    }
}

/* Mobile (576px and below) */
@media (max-width: 576px) {
    .countdown-heading {
        font-size: 24px;
    }
    
    .countdown-subheading {
        font-size: 14px;
    }
    
    .countdown-timer-box {
        padding: 20px 12px;
    }
    
    .countdown-display {
        gap: 8px;
    }
    
    .time-unit {
        min-width: 50px;
    }
    
    .time-number {
        font-size: 32px;
    }
    
    .time-separator {
        font-size: 24px;
    }
    
    .time-text {
        font-size: 10px;
    }
    
    .countdown-label {
        font-size: 12px;
    }
    
    .session-info {
        font-size: 14px;
    }
    
    .btn {
        font-size: 15px;
        padding: 10px 25px;
    }
}

/* Extra Small Mobile (400px and below) */
@media (max-width: 400px) {
    .countdown-heading {
        font-size: 22px;
    }
    
    .countdown-timer-box {
        padding: 18px 10px;
    }
    
    .countdown-display {
        gap: 5px;
    }
    
    .time-unit {
        min-width: 42px;
    }
    
    .time-number {
        font-size: 28px;
    }
    
    .time-separator {
        font-size: 20px;
    }
    
    .time-text {
        font-size: 9px;
    }
    
    .btn {
        font-size: 14px;
        padding: 10px 20px;
    }
}
/* ================================================
   COUNTDOWN TIMER FIX - ADD THIS TO YOUR CSS
   ================================================ */

/* Container for entire countdown */
.countdown-timer {
    background: #FEF7ED;
    border-radius: 16px;
    padding: 20px 15px;
    margin-top: 20px;
    overflow: hidden; /* Prevent overflow */
}

/* "Session Starts In" Label */
.countdown-label {
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: #F59E0B;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

/* Countdown Display - THE FIX FOR OVERFLOW */
.countdown-display {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px; /* Reduced gap */
    flex-wrap: nowrap; /* Don't wrap to next line */
    width: 100%; /* Take full width */
    max-width: 100%; /* Don't exceed container */
}

/* Individual Time Segment (Days, Hours, Minutes) */
.countdown-segment {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 0 1 auto; /* Don't grow, can shrink */
    min-width: 0; /* Allow shrinking below content size */
}

/* Time Number (03, 13, 32) */
.countdown-number {
    font-size: clamp(24px, 6vw, 36px); /* Responsive sizing */
    font-weight: 700;
    color: #1F2937;
    line-height: 1;
    white-space: nowrap;
}

/* Time Unit Label (DAYS, HOURS, MINUTES) */
.countdown-unit {
    font-size: clamp(8px, 2vw, 11px); /* Responsive sizing */
    font-weight: 500;
    color: #6B7280;
    text-transform: uppercase;
    margin-top: 4px;
    white-space: nowrap;
}

/* Divider/Separator Colon */
.countdown-divider {
    font-size: clamp(20px, 5vw, 28px); /* Responsive sizing */
    font-weight: 700;
    color: #F59E0B;
    line-height: 1;
    flex-shrink: 0; /* Don't shrink colons */
}

/* ================================================
   RESPONSIVE ADJUSTMENTS
   ================================================ */

/* Small phones */
@media (max-width: 400px) {
    .countdown-timer {
        padding: 15px 10px;
    }
    
    .countdown-display {
        gap: 4px; /* Even tighter on small screens */
    }
    
    .countdown-number {
        font-size: 22px !important; /* Force smaller on tiny screens */
    }
    
    .countdown-divider {
        font-size: 18px !important;
    }
    
    .countdown-unit {
        font-size: 8px !important;
    }
}

/* Very small phones */
@media (max-width: 360px) {
    .countdown-number {
        font-size: 20px !important;
    }
    
    .countdown-divider {
        font-size: 16px !important;
    }
}

  </style>