.hero-section {
    text-align: center;
    padding: 3rem 1rem;
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url('/data/images/hero-pro.png');
    background-size: cover;
    background-position: center;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-color);
    max-width: 800px;
    margin: 0 auto 2rem;
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: var(--primary-dark);
}

.advantages-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    padding: 2rem 1rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.advantage-card {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: center;
}

.advantage-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.advantage-title {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.advantage-description {
    color: var(--text-color);
    font-size: 0.95rem;
}

.how-it-works {
    padding: 3rem 1rem;
    margin-bottom: 3rem;
}

.how-it-works h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.steps-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.step-card {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    text-align: center;
    padding: 1rem;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.step-title {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.step-description {
    color: var(--text-color);
    font-size: 0.95rem;
}



   /* Footer */
   .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    color: white;
}


.footer-column {
    flex: 1 1 200px;
    margin-bottom: 2rem;
}

.footer-column a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    margin: 5px;
    cursor: pointer;
}

.footer-bottom {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 0.5rem;
}


@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .advantage-card, .step-card {
        min-width: 100%;
    }
    
    .cta-final h2 {
        font-size: 1.5rem;
    }
    
    .footer-column {
        min-width: 100%;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}