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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #131313;
    background-color: #f2efe6;
}

.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    position: relative;
    background: linear-gradient(135deg, #f2efe6 0%, #f1f1f1 100%);
}

.logo {
    position: absolute;
    top: 2rem;
    left: 2rem;
    font-size: 2rem;
    font-weight: 900;
    color: #10222b;
    letter-spacing: 1px;
}

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

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #10222b;
}

.hero-title .highlight {
    color: #7e84e5;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: #565656;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #4e7597;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #3b5266;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(62, 117, 151, 0.3);
}

.testimonial-section {
    background-color: #10222b;
    color: white;
    padding: 3rem 2rem;
    text-align: center;
}

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

.quote-icon {
    font-size: 3rem;
    color: #4e7597;
    margin-bottom: 1rem;
}

.testimonial-quote {
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #f1f1f1;
}

.testimonial-author {
    font-size: 1rem;
    color: #bbb;
    margin-bottom: 2rem;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #4caf50;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: #bbb;
    font-weight: 500;
}

.indicators {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #565656;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.indicator.active {
    background-color: #4e7597;
}

.indicator:hover {
    background-color: #4caf50;
}

@media (max-width: 768px) {
    .logo {
        position: relative;
        top: 0;
        left: 0;
        margin-bottom: 2rem;
    }

    .hero-section {
        padding: 1rem;
        min-height: 90vh;
    }

    .stats {
        flex-direction: column;
        gap: 2rem;
    }

    .testimonial-section {
        padding: 2rem 1rem;
    }
}

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

.hero-title {
    animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.cta-button {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.testimonial-content {
    animation: fadeInUp 0.8s ease-out 0.6s both;
}