/* ============================================ */
/* SEO INFO SECTION STYLES */
/* ============================================ */

.info-section {
    background: #fff;
    padding: 60px 0 80px;
    margin-bottom: 80px;
}

.info-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.info-title {
    font-family: 'Geometria', sans-serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    color: #2B2E33;
    text-align: center;
    margin-bottom: 40px;
}

.info-content {
    max-width: 1000px;
    margin: 0 auto;
}

.info-lead {
    font-family: 'Geometria', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
    color: #2B2E33;
    margin-bottom: 24px;
    text-align: center;
}

.info-lead strong {
    color: #5E99FF;
    font-weight: 700;
}

.info-text {
    font-family: 'Geometria', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    color: #4A4A4A;
    margin-bottom: 40px;
    text-align: center;
}

/* Benefits Section */
.info-benefits {
    background: #F2F3F5;
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 40px;
}

.benefits-title {
    font-family: 'Geometria', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #2B2E33;
    margin-bottom: 30px;
    text-align: center;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: 'Geometria', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #2B2E33;
}

.benefit-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.benefits-list li strong {
    color: #5E99FF;
    font-weight: 700;
}

/* Stats Section */
.info-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
    padding: 40px;
    background: linear-gradient(135deg, #5E99FF 0%, #4A7FE0 100%);
    border-radius: 16px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Geometria', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 12px;
}

.stat-label {
    font-family: 'Geometria', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.3;
}

/* CTA Section */
.info-cta {
    font-family: 'Geometria', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    color: #2B2E33;
    text-align: center;
    padding: 30px;
    background: #F9FAFB;
    border-radius: 12px;
    border-left: 4px solid #65FF5C;
}

.cta-link {
    display: inline-block;
    margin-top: 16px;
    font-family: 'Geometria', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #5E99FF;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.2s ease;
}

.cta-link:hover {
    color: #4A7FE0;
    transform: translateX(4px);
}

/* ============================================ */
/* RESPONSIVE STYLES */
/* ============================================ */

@media screen and (max-width: 1024px) {
    .info-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .benefits-list {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .info-section {
        padding: 40px 0 60px;
        margin-bottom: 40px;
    }
    
    .info-section .container {
        padding: 0 20px;
    }
    
    .info-title {
        font-size: 32px;
        margin-bottom: 30px;
    }
    
    .info-lead {
        font-size: 18px;
    }
    
    .info-text {
        font-size: 16px;
    }
    
    .info-benefits {
        padding: 24px;
    }
    
    .benefits-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .benefits-list {
        gap: 16px;
    }
    
    .benefits-list li {
        font-size: 15px;
    }
    
    .info-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        padding: 24px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .stat-label {
        font-size: 14px;
    }
    
    .info-cta {
        font-size: 16px;
        padding: 20px;
    }
    
    .cta-link {
        font-size: 16px;
    }
}

@media screen and (max-width: 480px) {
    .info-title {
        font-size: 26px;
    }
    
    .info-lead {
        font-size: 16px;
    }
    
    .info-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 42px;
    }
}

