/* Holistic SEO Importance Section Styles */

.holistic-seo-section {
    padding: 0;
}

.holistic-seo-component {
    display: flex;
    max-width: 1400px;
    margin: auto;
    overflow: hidden;
    background-color: #ffffff;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.left-section {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.left-section h3 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 600;
    line-height: 1.2;
}

.left-section p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #34495e;
    font-weight: 400;
}

.right-section {
    flex: 1;
    background-image: url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    min-height: 400px;
}

/* Tablet Styles */
@media (max-width: 1024px) {
    .left-section {
        padding: 50px;
    }

    .left-section h3 {
        font-size: 2.25rem;
    }

    .left-section p {
        font-size: 1rem;
    }

    .right-section {
        min-height: 350px;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .holistic-seo-component {
        flex-direction: column;
    }

    .left-section {
        padding: 40px;
    }

    .left-section h3 {
        font-size: 1.75rem;
    }

    .left-section p {
        font-size: 0.95rem;
    }

    .right-section {
        min-height: 300px;
    }
}
