﻿
.page-container {
    font-family: Arial, sans-serif;
    margin: 20px auto;
    padding: 0 10px;
}
    .page-container h1 {
        text-align: center;
    }

    .page-container textarea {
        width: 100%;
        height: 80px;
        padding: 8px;
        font-size: 14px;
    }

    .page-container button {
        margin-top: 10px;
        padding: 8px 16px;
        font-size: 14px;
        cursor: pointer;
    }

    .page-container .result {
        margin-top: 20px;
        border: 1px solid #ccc;
        padding: 15px;
        border-radius: 6px;
    }

    .page-container .section-title {
        font-weight: bold;
        margin-top: 10px;
    }

    .page-container ul {
        padding-left: 20px;
    }
    .required-label::after {
    content: " *";
    color: red;
    }

/* FAQ Page Container */
.faq-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 15px 60px;
    font-size: 15px;
    line-height: 1.6;
}

/* Section Titles */
.faq-section h2 {
    margin-top: 35px;
    margin-bottom: 15px;
    font-size: 22px;
    border-bottom: 2px solid #eee;
    padding-bottom: 5px;
}

/* FAQ Items */
.faq-item {
    margin-bottom: 12px;
    padding: 12px 15px;
    border-radius: 8px;
    background: #fafafa;
    border: 1px solid #e3e3e3;
    cursor: pointer;
    transition: background 0.2s ease, box-shadow 0.2s ease;
}

    /* Hover effect */
    .faq-item:hover {
        background: #f5f5f5;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    }

    /* Question Title */
    .faq-item h3 {
        margin: 0;
        font-size: 17px;
        transition: color 0.2s ease;
    }

    /* Answer Text */
    .faq-item p {
        margin-top: 8px;
        display: none; /* hidden until clicked */
    }

    /* Expanded answer */
    .faq-item.open p {
        display: block;
    }
/* Main container */
.about-page {
    max-width: 950px;
    margin: 0 auto;
    padding: 20px 15px 60px;
    font-size: 15px;
    line-height: 1.7;
}

    /* General section spacing */
    .about-page section {
        margin-bottom: 40px;
    }

/* Hero section */
.about-hero h1 {
    font-size: 30px;
    margin-bottom: 15px;
}

.about-hero p {
    margin-bottom: 12px;
}

/* Mission, Vision, Values Grid */
.about-mvv {
    margin-top: 35px;
}

.about-mvv-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

/* Individual card inside MVV */
.about-mvv-item {
    background: #fafafa;
    border: 1px solid #e4e4e4;
    padding: 20px 18px;
    border-radius: 10px;
}

    /* MVV titles */
    .about-mvv-item h2 {
        font-size: 22px;
        margin-bottom: 10px;
    }

/* How We Help and other sections */
.about-page h2 {
    font-size: 22px;
    margin-bottom: 12px;
}

.about-page ul {
    margin-left: 20px;
    margin-bottom: 10px;
}

.about-page li {
    margin-bottom: 7px;
}

/* Contact section */
.about-contact {
    padding-top: 10px;
    border-top: 2px solid #efefef;
}

/* Larger screens (2 or 3 column MVV grid) */
@media (min-width: 768px) {
    .about-mvv-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1100px) {
    .about-mvv-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
.careers-page,
.advertising-page,
.blog-page {
    max-width: 950px;
    margin: 0 auto;
    padding: 20px 15px 60px;
    font-size: 15px;
    line-height: 1.7;
}

    .careers-page section,
    .advertising-page section,
    .blog-page section {
        margin-bottom: 35px;
    }

/* Blog cards */
.blog-featured-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.blog-card {
    background: #fafafa;
    border: 1px solid #e4e4e4;
    border-radius: 10px;
    padding: 16px 18px;
}

    .blog-card h3 {
        margin-top: 0;
        margin-bottom: 8px;
        font-size: 18px;
    }

.blog-card-meta {
    margin-top: 8px;
    font-size: 13px;
    color: #777;
}

@media (min-width: 768px) {
    .blog-featured-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.blog-page {
    max-width: 950px;
    margin: 0 auto;
    padding: 20px 15px 60px;
    font-size: 15px;
    line-height: 1.7;
}

.blog-content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 20px;
}

.blog-main .blog-card {
    background: #fafafa;
    border: 1px solid #e4e4e4;
    border-radius: 10px;
    padding: 16px 18px;
    margin-bottom: 14px;
}

.blog-card h2 {
    margin-top: 0;
    font-size: 20px;
}

.blog-meta {
    font-size: 13px;
    color: #777;
    margin-bottom: 10px;
}

.blog-sidebar {
    border-left: 1px solid #eee;
    padding-left: 16px;
}

    .blog-sidebar .latest-list {
        list-style: none;
        padding-left: 0;
    }

        .blog-sidebar .latest-list li {
            margin-bottom: 6px;
        }

.blog-post h1 {
    font-size: 26px;
    margin-bottom: 8px;
}

.blog-body p {
    margin-bottom: 10px;
}

@media (min-width: 768px) {
    .blog-content-grid {
        grid-template-columns: 2.2fr 1fr;
    }
}