main {
    min-height: calc(100vh - 200px);
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.hero-section {
    text-align: center;
    margin-bottom: 4rem;
}

.hero-section h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    min-height: 8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    
    background: linear-gradient(135deg, var(--pink), var(--teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-section h1 .dynamic-text {
    display: inline-block;
}

.hero-section h1 .cursor {
    display: inline-block;
    width: 4px;
    animation: blink 1s infinite;
    background: linear-gradient(135deg, var(--pink), var(--teal));
}

.hero-section h1 .cursor.typing {
    animation: none;
}

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


.hero-section p {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    background-color: var(--pink);
    color: var(--white);
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 40px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 46, 99, 0.3);
    border: 2px solid transparent;
}

.cta-button:hover {
    background-color: var(--teal);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 245, 212, 0.3);
}

.cta-button.secondary {
    background-color: transparent;
    color: var(--dark-teal);
    border: 2px solid var(--dark-teal);
    box-shadow: none;
}

.cta-button.secondary:hover {
    background-color: var(--teal);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(0, 245, 212, 0.3);
}

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

.content-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--teal);
}

.content-card h3 {
    color: var(--dark-blue);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.content-card p {
    color: var(--gray);
    line-height: 1.7;
}

.stats-section {
    display: flex;
    justify-content: space-around;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 3rem 2rem;
    background-color: var(--white);
    border-top: 1px solid var(--white);
    border-bottom: 1px solid var(--white);
  }
  
  .stat-card {
    text-align: center;
    padding: 1.5rem;
    flex-grow: 1;
    min-width: 200px;
  }
  
  .stat-number {
    font-family: 'Sora', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--dark-teal);
    margin-bottom: 0.5rem;
    line-height: 1;
  }
  
  .stat-label {
    font-size: 1.1rem;
    color: var(--dark-gray);
    font-weight: 500;
  }
  
  @media (max-width: 768px) {
    .stats-section {
      flex-direction: column;
      gap: 1rem;
      padding: 2rem 1rem;
    }
    .hero-section h1 {
        font-size: 2.5rem;
    }
  }

