/**
 * SEO Text Section Stylesheet
 * Evolux Cards - Styling voor SEO tekst sectie
 */

/* ===== SEO TEXT SECTION ===== */
.seo-text-section {
    background: var(--bg-white);
    padding: 100px 0;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.seo-text-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-dark) 50%, var(--primary-color) 100%);
}

.seo-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.seo-title {
    font-size: 42px;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 40px;
    line-height: 1.2;
    text-align: left;
    letter-spacing: -0.5px;
    position: relative;
    padding-bottom: 25px;
    border-bottom: 3px solid var(--primary-color);
    display: inline-block;
    width: 100%;
}

.seo-subtitle {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-color);
    margin-top: 60px;
    margin-bottom: 30px;
    line-height: 1.3;
    text-align: left;
    letter-spacing: -0.3px;
    position: relative;
    padding-left: 0;
}

.seo-subtitle::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-dark);
}

.seo-text {
    color: #4a5568;
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 30px;
    text-align: left;
}

.seo-text p {
    margin-bottom: 24px;
    text-align: left;
    padding-left: 0;
}

.seo-text p:last-child {
    margin-bottom: 0;
}

.seo-text p:first-of-type {
    font-size: 19px;
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.8;
    margin-bottom: 28px;
}

@media (max-width: 1024px) {
    .seo-content {
        padding: 0 32px;
    }
}

@media (max-width: 768px) {
    .seo-text-section {
        padding: 60px 0;
        margin-top: 50px;
    }
    
    .seo-content {
        padding: 0 24px;
    }
    
    .seo-title {
        font-size: 32px;
        margin-bottom: 30px;
        padding-bottom: 20px;
    }
    
    .seo-subtitle {
        font-size: 26px;
        margin-top: 45px;
        margin-bottom: 25px;
    }
    
    .seo-subtitle::after {
        width: 50px;
        height: 2px;
        bottom: -8px;
    }
    
    .seo-text {
        font-size: 16px;
        line-height: 1.8;
        margin-bottom: 25px;
    }
    
    .seo-text p:first-of-type {
        font-size: 18px;
        margin-bottom: 24px;
    }
    
    .seo-text p {
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .seo-text-section {
        padding: 50px 0;
        margin-top: 40px;
    }
    
    .seo-content {
        padding: 0 20px;
    }
    
    .seo-title {
        font-size: 26px;
        margin-bottom: 25px;
        padding-bottom: 15px;
        border-bottom-width: 2px;
    }
    
    .seo-subtitle {
        font-size: 22px;
        margin-top: 35px;
        margin-bottom: 20px;
    }
    
    .seo-subtitle::after {
        width: 40px;
        height: 2px;
        bottom: -6px;
    }
    
    .seo-text {
        font-size: 15px;
        line-height: 1.75;
    }
    
    .seo-text p:first-of-type {
        font-size: 17px;
    }
    
    .seo-text p {
        margin-bottom: 18px;
    }
}

