/**
 * Homepage SEO Content Styles
 * Extracted from inline styles to reduce HTML file size
 */

/* Hidden H1 for SEO - visible to search engines but not users */
.seo-hidden-h1 {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.seo-section-wrapper {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
}

.seo-content-section {
    background: #f8f9fa;
    padding: 1.5rem 2rem;
    border-radius: 12px;
    margin-bottom: 0;
}

.seo-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.25rem;
    text-align: center;
    line-height: 1.4;
}

.seo-content h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #34495e;
    margin-top: 1.25rem;
    margin-bottom: 0.75rem;
}

.seo-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #555;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.seo-content p {
    font-size: 0.925rem;
    line-height: 1.65;
    color: #555;
    margin-bottom: 0.875rem;
    text-align: justify;
}

.seo-content ul {
    margin: 0.875rem 0 1.25rem 1.5rem;
    line-height: 1.7;
}

.seo-content ul li {
    color: #555;
    margin-bottom: 0.4rem;
    font-size: 0.925rem;
}

.seo-content a {
    color: #ff6b35;
    text-decoration: underline;
    font-weight: 500;
    transition: all 0.2s ease;
}

.seo-content a:hover {
    color: #ff5722;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.seo-expandable {
    margin-top: 1.5rem;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
    }
    to {
        opacity: 1;
        max-height: 5000px;
    }
}

#seoToggleBtn {
    color: #ff6b35;
    text-decoration: underline;
    font-weight: 500;
    font-size: 0.95rem;
    display: inline-block;
    cursor: pointer;
    transition: all 0.2s ease;
}

#seoToggleBtn:hover {
    color: #ff5722;
    text-decoration: underline;
    text-underline-offset: 3px;
}

#seoToggleBtn i {
    transition: transform 0.3s ease;
    font-size: 0.85rem;
}

#seoToggleBtn.expanded i {
    transform: rotate(180deg);
}

@media (max-width: 768px) {
    .seo-content-section {
        padding: 1.25rem 1rem;
    }

    .seo-title {
        font-size: 1.25rem;
    }

    .seo-content h3 {
        font-size: 1.05rem;
    }

    .seo-content h4 {
        font-size: 0.95rem;
    }

    .seo-content p {
        text-align: left;
        font-size: 0.875rem;
    }

    .seo-content ul li {
        font-size: 0.875rem;
    }

    #seoToggleBtn {
        font-size: 0.9rem;
    }

    #seoToggleBtn i {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .seo-content-section {
        padding: 1rem 0.875rem;
    }

    .seo-title {
        font-size: 1.1rem;
        line-height: 1.3;
    }

    .seo-content h3 {
        font-size: 1rem;
    }

    .seo-content h4 {
        font-size: 0.9rem;
    }

    .seo-content p {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    .seo-content ul {
        margin-left: 1.25rem;
    }

    .seo-content ul li {
        font-size: 0.85rem;
    }

    #seoToggleBtn {
        font-size: 0.85rem;
    }
}
