html {
    background: white !important;
}
.seo-container {
    max-width: 1200px;
    margin: 60px auto;
    padding: 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
}

.seo-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 3px solid #007bff;
}

.seo-header h1 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
}

.seo-header h2 {
    font-size: 1.8rem;
    color: #333;
    margin-top: 20px;
    font-weight: 600;
}

.seo-intro {
    margin-bottom: 50px;
}

.seo-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
    text-align: justify;
}

.seo-section {
    margin-bottom: 60px;
}

.seo-section h2 {
    font-size: 2rem;
    color: #007bff;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e9ecef;
    font-weight: 600;
}

.seo-section h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-top: 30px;
    margin-bottom: 20px;
    font-weight: 600;
}

.seo-section h4 {
    font-size: 1.3rem;
    color: #34495e;
    margin-top: 25px;
    margin-bottom: 15px;
    font-weight: 600;
}

.seo-section h5 {
    font-size: 1.1rem;
    color: #555;
    margin-top: 20px;
    margin-bottom: 12px;
    font-weight: 600;
}

.seo-section h6 {
    font-size: 1rem;
    color: #666;
    margin-top: 15px;
    margin-bottom: 10px;
    font-weight: 500;
}

.seo-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.seo-feature-item {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #007bff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.seo-feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.15);
}

.seo-feature-item h4 {
    color: #007bff;
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.seo-feature-item p {
    color: #555;
    line-height: 1.7;
    margin: 0;
    font-size: 0.95rem;
}

.seo-faq {
    margin-top: 30px;
}

.seo-faq-item {
    background: #ffffff;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 1px solid #e9ecef;
}

.seo-faq-question {
    padding: 20px;
    background: #f8f9fa;
    cursor: pointer;
    font-weight: 600;
    color: #2c3e50;
    font-size: 1.1rem;
    border-bottom: 1px solid #e9ecef;
    transition: background 0.3s ease;
}

.seo-faq-question:hover {
    background: #e9ecef;
}

.seo-faq-answer {
    padding: 20px;
    color: #555;
    line-height: 1.8;
    font-size: 1rem;
}

.seo-reviews {
    margin-top: 30px;
}

.seo-review-item {
    background: #ffffff;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #28a745;
}

.seo-review-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.seo-review-name {
    font-weight: 600;
    color: #2c3e50;
    font-size: 1.1rem;
    margin-right: 15px;
}

.seo-review-rating {
    color: #ffc107;
    font-size: 1.2rem;
}

.seo-review-text {
    color: #555;
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

.seo-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 25px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.seo-links {
    margin-top: 40px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 12px;
}

.seo-links h3 {
    margin-top: 0;
    color: #007bff;
}

.seo-internal-links,
.seo-external-links {
    margin-top: 20px;
}

.seo-internal-links a,
.seo-external-links a {
    display: inline-block;
    margin: 8px 15px 8px 0;
    padding: 10px 20px;
    background: #007bff;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: background 0.3s ease, transform 0.2s ease;
}

.seo-internal-links a:hover,
.seo-external-links a:hover {
    background: #0056b3;
    transform: translateY(-2px);
}

.seo-external-links a {
    background: #28a745;
}

.seo-external-links a:hover {
    background: #218838;
}

.seo-social-share {
    margin-top: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    text-align: center;
}

.seo-social-share h3 {
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 20px;
}

.seo-social-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.seo-social-btn {
    display: inline-block;
    padding: 12px 25px;
    background: #ffffff;
    color: #333;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.seo-social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.seo-content-image {
    text-align: center;
    margin: 30px 0;
}

.seo-highlight {
    background: #fff3cd;
    padding: 20px;
    border-left: 4px solid #ffc107;
    border-radius: 6px;
    margin: 25px 0;
}

.seo-highlight p {
    margin: 0;
    color: #856404;
    font-weight: 500;
}

@media (max-width: 768px) {
    .seo-container {
        padding: 20px;
        margin: 30px 10px;
    }
    
    .seo-header h1 {
        font-size: 1.8rem;
    }
    
    .seo-features {
        grid-template-columns: 1fr;
    }
    
    .seo-social-buttons {
        flex-direction: column;
    }
    
    .seo-social-btn {
        width: 100%;
        text-align: center;
    }
}

