/*
Theme Name: Tech Solutions Hub - Simple
Description: Simple WordPress theme for technical solutions
Version: 1.0
Author: Tech Solutions Team
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: #2c3e50;
    color: white;
    padding: 1rem 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background 0.3s;
}

.nav-menu a:hover {
    background: #34495e;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    padding: 4rem 2rem;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Articles Section */
.latest-articles {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.latest-articles h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

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

.article-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.placeholder-img {
    background: #3498db;
    color: white;
    padding: 3rem;
    text-align: center;
    font-size: 1.2rem;
    font-weight: bold;
}

.article-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.article-card h3 {
    padding: 1rem;
    margin: 0;
}

.article-card h3 a {
    color: #2c3e50;
    text-decoration: none;
}

.article-card p {
    padding: 0 1rem;
    color: #7f8c8d;
}

.article-meta {
    padding: 0 1rem;
    color: #95a5a6;
    font-size: 0.9rem;
}

.btn {
    display: inline-block;
    background: #3498db;
    color: white;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    margin: 1rem;
    transition: background 0.3s;
}

.btn:hover {
    background: #2980b9;
}

/* Footer */
footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 1rem 0;
    text-align: center;
    margin-top: 4rem;
}

.footer-content {
    margin-bottom: 2rem;
}

.footer-content h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.footer-content p {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.footer-links {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    text-decoration: none;
}

.footer-social {
    margin: 2rem 0 1rem 0;
    text-align: center;
}

.footer-social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-social-link {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 1rem;
    margin-top: 1rem;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0.5rem;
    }

    .hero h1,
    .contact-hero h1,
    .about-hero h1,
    .privacy-hero h1 {
        font-size: 2rem;
    }

    .articles-container {
        grid-template-columns: 1fr;
    }

    /* Contact Page Mobile */
    .contact-cards {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-section {
        padding: 2rem 1rem;
    }

    /* About Page Mobile */
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .mission-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .values-list {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 200px;
        text-align: center;
    }

    /* Privacy Page Mobile */
    .usage-grid {
        grid-template-columns: 1fr;
    }

    .cookies-types {
        grid-template-columns: 1fr;
    }

    .rights-grid {
        grid-template-columns: 1fr;
    }

    .contact-privacy-info {
        grid-template-columns: 1fr;
    }

    .security-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    /* Social Links Mobile */
    .social-links {
        flex-direction: column;
        align-items: center;
    }

    .social-link {
        width: 200px;
        justify-content: center;
    }

    /* Categories Page Mobile */
    .categories-hero h1 {
        font-size: 2rem;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .category-posts {
        grid-template-columns: 1fr;
    }

    .category-title {
        font-size: 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .search-form-container .search-form {
        flex-direction: column;
        gap: 1rem;
    }

    .search-form-container .search-submit {
        width: 100%;
    }

    /* Footer Mobile */
    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .footer-links a {
        width: 200px;
        text-align: center;
    }
}

/* WordPress Classes */
.alignleft {
    float: left;
    margin-right: 1rem;
}

.alignright {
    float: right;
    margin-left: 1rem;
}

.aligncenter {
    display: block;
    margin: 0 auto;
}

.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
    font-style: italic;
    text-align: center;
}

.screen-reader-text {
    position: absolute;
    left: -9999px;
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    text-align: center;
    padding: 4rem 2rem;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.contact-content {
    padding: 4rem 0;
}

.contact-info {
    margin-bottom: 4rem;
}

.contact-info h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.contact-card p {
    color: #7f8c8d;
    margin-bottom: 0.5rem;
}

/* Contact Form Styles */
.contact-form-section {
    background: #f8f9fa;
    padding: 4rem 2rem;
    border-radius: 15px;
    margin: 4rem 0;
}

.contact-form-section h2 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 2rem;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 10px rgba(52, 152, 219, 0.2);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
}

.submit-btn {
    background: #3498db;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
}

.submit-btn:hover {
    background: #2980b9;
}

.contact-success {
    background: #d4edda;
    color: #155724;
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 2rem;
    border: 1px solid #c3e6cb;
}

.contact-error {
    background: #f8d7da;
    color: #721c24;
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 2rem;
    border: 1px solid #f5c6cb;
}

/* FAQ Styles */
.faq-section {
    margin: 4rem 0;
}

.faq-section h2 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 2rem;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-question h3 {
    margin: 0;
    color: #2c3e50;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #3498db;
    font-weight: bold;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    margin: 0;
    color: #7f8c8d;
    line-height: 1.6;
}

/* Social Media Styles */
.social-section {
    background: #f8f9fa;
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    margin: 4rem 0;
}

.social-section h2 {
    color: #2c3e50;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: white;
    color: #2c3e50;
    text-decoration: none;
    border-radius: 25px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.social-icon {
    font-size: 1.2rem;
}

/* Social Media Specific Colors */
.social-link.facebook:hover {
    background: #1877f2;
    color: white;
}

.social-link.twitter:hover {
    background: #1da1f2;
    color: white;
}

.social-link.linkedin:hover {
    background: #0077b5;
    color: white;
}

.social-link.youtube:hover {
    background: #ff0000;
    color: white;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    color: white;
}

.social-link.whatsapp:hover {
    background: #25d366;
    color: white;
}

/* No Social Links Message */
.no-social-links {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
    color: #6c757d;
}

.no-social-links p {
    margin-bottom: 1rem;
}

.no-social-links a {
    color: #007cba;
    text-decoration: none;
    font-weight: bold;
}

.no-social-links a:hover {
    text-decoration: underline;
}

/* About Page Styles */
.about-main {
    padding: 0;
}

.about-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    padding: 4rem 2rem;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.about-content {
    padding: 4rem 0;
}

.about-content section {
    margin-bottom: 4rem;
    padding: 3rem 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.about-content h2 {
    text-align: center;
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 1.5rem;
}

.story-image .placeholder-img {
    background: #3498db;
    color: white;
    padding: 3rem;
    text-align: center;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: bold;
}

/* Mission Grid */
.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.mission-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.mission-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.mission-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.mission-card p {
    color: #7f8c8d;
    line-height: 1.6;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.team-member {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-photo {
    width: 120px;
    height: 120px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
}

.member-photo .placeholder-img {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #3498db, #2980b9);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
}

.team-member h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.member-role {
    color: #3498db;
    font-weight: bold;
    margin-bottom: 1rem;
}

.member-bio {
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.member-social .social-link {
    color: #3498db;
    text-decoration: none;
    padding: 0.5rem 1rem;
    background: white;
    border-radius: 20px;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.member-social .social-link:hover {
    background: #3498db;
    color: white;
}

/* Values List */
.values-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #3498db;
}

.value-item h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.value-item p {
    color: #7f8c8d;
    line-height: 1.6;
}

/* Statistics */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #3498db;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #7f8c8d;
    font-size: 1.1rem;
}

/* Call to Action */
.cta-section {
    text-align: center;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 4rem 2rem;
    border-radius: 15px;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn.primary {
    background: #3498db;
    color: white;
}

.btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn.secondary:hover {
    background: white;
    color: #2c3e50;
}

/* Privacy Policy Styles */
.privacy-main {
    padding: 0;
}

.privacy-hero {
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    color: white;
    text-align: center;
    padding: 4rem 2rem;
}

.privacy-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.privacy-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.last-updated {
    background: rgba(255,255,255,0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: inline-block;
    font-size: 0.9rem;
}

.privacy-content {
    padding: 4rem 0;
}

.table-of-contents {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    border-left: 4px solid #3498db;
}

.table-of-contents h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.table-of-contents ul {
    list-style: none;
    padding: 0;
}

.table-of-contents li {
    margin-bottom: 0.5rem;
}

.table-of-contents a {
    color: #3498db;
    text-decoration: none;
    padding: 0.5rem 0;
    display: block;
    transition: color 0.3s;
}

.table-of-contents a:hover,
.table-of-contents a.active {
    color: #2980b9;
    font-weight: bold;
}

.privacy-content section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.privacy-content h2 {
    color: #2c3e50;
    border-bottom: 2px solid #3498db;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

.privacy-content h3 {
    color: #34495e;
    margin: 1.5rem 0 1rem 0;
}

.highlight-box {
    background: #e8f4fd;
    border: 1px solid #3498db;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.highlight-box h3 {
    color: #2980b9;
    margin-top: 0;
}

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

.usage-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
}

.usage-card:hover {
    transform: translateY(-5px);
}

.usage-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.usage-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.usage-card p {
    color: #7f8c8d;
    line-height: 1.6;
}

.sharing-list {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.sharing-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #e74c3c;
}

.sharing-item h3 {
    color: #c0392b;
    margin-bottom: 1rem;
}

.sharing-item p {
    color: #7f8c8d;
    margin: 0;
}

.security-measures {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.security-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
}

.security-icon {
    font-size: 2rem;
    color: #27ae60;
}

.security-item h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.security-item p {
    color: #7f8c8d;
    margin: 0;
}

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

.cookie-type {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    padding: 1.5rem;
    border-radius: 8px;
}

.cookie-type h3 {
    color: #856404;
    margin-bottom: 1rem;
}

.cookie-type p {
    color: #856404;
    margin: 0;
}

.cookie-control {
    background: #d1ecf1;
    border: 1px solid #bee5eb;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.cookie-control h3 {
    color: #0c5460;
    margin-bottom: 1rem;
}

.cookie-control p {
    color: #0c5460;
    margin: 0;
}

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

.right-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #17a2b8;
}

.right-item h3 {
    color: #138496;
    margin-bottom: 1rem;
}

.right-item p {
    color: #7f8c8d;
    margin: 0;
}

.contact-privacy-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.contact-method {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
}

.contact-method h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.contact-method p {
    color: #7f8c8d;
    margin: 0;
}

.contact-method a {
    color: #3498db;
    text-decoration: none;
}

.contact-method a:hover {
    text-decoration: underline;
}

.policy-updates {
    background: #e8f5e8;
    border: 1px solid #c3e6c3;
    padding: 2rem;
    border-radius: 10px;
    margin: 3rem 0;
}

.policy-updates h2 {
    color: #155724;
    border-bottom: 2px solid #28a745;
}

.update-notice {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.update-notice h3 {
    color: #155724;
    margin-bottom: 1rem;
}

.update-notice ul {
    margin: 0;
    padding-left: 1.5rem;
}

.update-notice li {
    color: #155724;
    margin-bottom: 0.5rem;
}

/* Categories Page Styles */
.categories-main {
    padding: 0;
}

.categories-hero {
    background: linear-gradient(135deg, #8e44ad 0%, #9b59b6 100%);
    color: white;
    text-align: center;
    padding: 4rem 2rem;
}

.categories-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.categories-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.categories-content {
    padding: 4rem 0;
}

.categories-grid-section {
    margin-bottom: 4rem;
}

.categories-grid-section h2 {
    text-align: center;
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.category-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #f0f0f0;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.category-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: block;
}

.category-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.category-description {
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.category-stats {
    margin-bottom: 1.5rem;
}

.article-count {
    background: #3498db;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
}

.category-btn {
    background: #8e44ad;
    color: white;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 25px;
    transition: background 0.3s;
    display: inline-block;
}

.category-btn:hover {
    background: #7d3c98;
}

/* Category Articles Section */
.category-articles-section {
    margin-bottom: 4rem;
}

.category-articles-section h2 {
    text-align: center;
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.category-articles {
    background: #f8f9fa;
    padding: 3rem 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
}

.category-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: left;
}

.category-title .category-icon {
    font-size: 2rem;
}

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

.category-post-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.category-post-card:hover {
    transform: translateY(-5px);
}

.category-post-card .post-thumbnail img,
.category-post-card .placeholder-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.category-post-card .placeholder-img {
    background: #3498db;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
}

.category-post-card .post-content {
    padding: 1.5rem;
}

.category-post-card h4 {
    margin-bottom: 1rem;
}

.category-post-card h4 a {
    color: #2c3e50;
    text-decoration: none;
}

.category-post-card h4 a:hover {
    color: #3498db;
}

.category-post-card p {
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.post-meta {
    color: #95a5a6;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.view-all-category {
    text-align: center;
}

.btn-outline {
    background: transparent;
    color: #8e44ad;
    border: 2px solid #8e44ad;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s;
    display: inline-block;
}

.btn-outline:hover {
    background: #8e44ad;
    color: white;
}

/* Category Search Section */
.category-search-section {
    margin-bottom: 4rem;
}

.search-box {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 4rem 2rem;
    border-radius: 15px;
    text-align: center;
}

.search-box h2 {
    color: white;
    margin-bottom: 1rem;
}

.search-box p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.search-form-container {
    max-width: 500px;
    margin: 0 auto;
}

.search-form-container .search-form {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.search-form-container .search-field {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
}

.search-form-container .search-submit {
    background: #3498db;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    transition: background 0.3s;
}

.search-form-container .search-submit:hover {
    background: #2980b9;
}

/* Additional Mobile Responsive Styles */
@media (max-width: 768px) {
    /* Footer Social Mobile */
    .footer-social-links {
        gap: 0.5rem;
    }

    .footer-social-link {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    /* Social Section Mobile */
    .social-links {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .social-link {
        width: 250px;
        justify-content: center;
    }

    .no-social-links {
        padding: 1rem;
    }
}
