
/* Content Page Styles */
.content-page {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
}

.content-page h1 {
    font-size: 2rem;
    color: #1d9bf0;
    margin-bottom: 2rem;
    text-align: center;
}

.content-page h2 {
    font-size: 1.4rem;
    color: #333;
    margin: 2rem 0 1rem;
}

.content-page h3 {
    font-size: 1.1rem;
    color: #555;
    margin: 1.5rem 0 0.5rem;
}

.content-page p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.content-page ul, .content-page ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.content-page li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: #555;
}

/* Policy Section */
.policy-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.policy-section:last-child {
    border-bottom: none;
}

.last-updated {
    color: #999;
    font-size: 0.9rem;
    margin-top: 2rem;
}

/* About Section */
.about-section {
    margin-bottom: 2.5rem;
}

.about-section h2 {
    color: #1d9bf0;
    margin-bottom: 1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.feature-card {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
}

.feature-card h3 {
    color: #1d9bf0;
    margin-bottom: 0.5rem;
}

/* Contact Section */
.contact-section {
    margin-bottom: 2rem;
}

.contact-info {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.contact-note {
    text-align: center;
    color: #666;
    font-style: italic;
    margin-top: 2rem;
}

/* Blog Styles */
.blog-index-header {
    text-align: center;
    margin-bottom: 3rem;
}

.blog-index-header h1 {
    color: #1d9bf0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.blog-card h2 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.blog-card h2 a {
    color: #333;
    text-decoration: none;
}

.blog-card h2 a:hover {
    color: #1d9bf0;
}

.blog-card-description {
    color: #666;
    margin-bottom: 1rem;
}

.read-more {
    color: #1d9bf0;
    text-decoration: none;
    font-weight: 500;
}

.read-more:hover {
    text-decoration: underline;
}

/* Blog Article */
.blog-article {
    max-width: 800px;
}

.blog-header {
    text-align: center;
    margin-bottom: 2rem;
}

.blog-description {
    color: #666;
    font-size: 1.1rem;
}

.blog-content h2 {
    color: #1d9bf0;
    margin-top: 2rem;
}

.blog-content ul, .blog-content ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.blog-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.blog-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

/* Related Articles */
.related-articles {
    margin-top: 3rem;
    padding: 1.5rem;
    background: #f9f9f9;
    border-radius: 8px;
}

.related-articles h2 {
    color: #1d9bf0;
    margin-bottom: 1rem;
}

.related-articles ul {
    list-style: none;
    padding: 0;
}

.related-articles li {
    margin-bottom: 0.75rem;
}

.related-articles a {
    color: #333;
    text-decoration: none;
}

.related-articles a:hover {
    color: #1d9bf0;
    text-decoration: underline;
}

/* Footer Links */
.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #1d9bf0;
    text-decoration: underline;
}

/* SEO Content Styles */
.seo-content {
    max-width: 800px;
    margin: 3rem auto;
    padding: 2rem;
    background: #f9f9f9;
    border-radius: 12px;
}

.seo-content h1 {
    font-size: 1.75rem;
    color: #1d9bf0;
    margin-bottom: 2rem;
    text-align: center;
}

.seo-content h2 {
    font-size: 1.4rem;
    color: #333;
    margin: 2rem 0 1rem;
}

.seo-content h3 {
    font-size: 1.1rem;
    color: #555;
    margin: 1.5rem 0 0.5rem;
}

.seo-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.how-to-guide ol {
    padding-left: 1.5rem;
}

.how-to-guide li {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #555;
}

.features ul {
    padding-left: 1.5rem;
}

.features li {
    margin-bottom: 0.75rem;
    color: #555;
}

.faq {
    margin-top: 2rem;
}

.faq p {
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .seo-content, .content-page {
        padding: 1.5rem;
        margin: 2rem 1rem;
    }
    
    .seo-content h1, .content-page h1 {
        font-size: 1.4rem;
    }
    
    .seo-content h2, .content-page h2 {
        font-size: 1.2rem;
    }
    
    .features-grid, .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
}
