/* About Us Page Styles */

.page-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #002a5c 100%);
    color: white;
    padding: 100px 0 60px;
    text-align: center;
    margin-top: 0;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 20px;
    opacity: 0.9;
}

/* Hero Section */
.hero-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-content h2 {
    color: var(--primary-blue);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
}

.hero-content p {
    font-size: 19px;
    line-height: 1.8;
    color: #555;
}

/* Content Sections */
.content-section {
    padding: 60px 0;
}

.content-section:nth-child(even) {
    background-color: #f8f9fa;
}

.content-section:nth-child(odd) {
    background-color: white;
}

.section-content {
    max-width: 1000px;
    margin: 0 auto;
}

.section-content h2 {
    color: var(--primary-blue);
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--accent-gold);
}

.section-content h3 {
    color: var(--primary-blue);
    font-size: 28px;
    font-weight: 600;
    margin-top: 35px;
    margin-bottom: 20px;
}

.section-content h4 {
    color: #333;
    font-size: 22px;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 15px;
}

.section-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.section-content ul {
    margin: 20px 0;
    padding-left: 25px;
}

.section-content ul li {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 12px;
}

.section-content strong {
    color: var(--primary-blue);
    font-weight: 600;
}

/* Mission & Vision Boxes */
.mission-vision-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 40px 0;
}

.mission-box, .vision-box {
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.mission-box {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-left: 5px solid var(--primary-blue);
}

.vision-box {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    border-left: 5px solid var(--accent-gold);
}

.mission-box h3, .vision-box h3 {
    color: var(--primary-blue);
    font-size: 26px;
    margin-top: 0;
    margin-bottom: 15px;
}

.mission-box p, .vision-box p {
    font-size: 17px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 0;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.value-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    border-top: 4px solid var(--accent-gold);
    transition: all 0.3s ease;
}

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

.value-card h4 {
    color: var(--primary-blue);
    font-size: 22px;
    margin-top: 0;
    margin-bottom: 15px;
}

.value-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 0;
}

/* Highlight Boxes */
.highlight-box {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    padding: 30px;
    border-radius: 12px;
    margin: 30px 0;
    border-left: 5px solid #4caf50;
}

.highlight-box h3 {
    color: #2e7d32;
    margin-top: 0;
    margin-bottom: 15px;
}

.highlight-box p {
    color: #1b5e20;
    margin-bottom: 15px;
}

.highlight-box ul li {
    color: #1b5e20;
}

/* Info Boxes */
.info-box {
    background: #fff3cd;
    padding: 25px 30px;
    border-radius: 10px;
    margin: 30px 0;
    border-left: 5px solid #ffc107;
}

.info-box h4 {
    color: #856404;
    margin-top: 0;
    margin-bottom: 15px;
}

.info-box p {
    color: #856404;
    margin-bottom: 10px;
}

.info-box ul li {
    color: #856404;
}

/* Commitment Box */
.commitment-box {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    padding: 30px;
    border-radius: 12px;
    margin: 30px 0;
    border: 2px solid var(--primary-blue);
}

.commitment-box h3 {
    color: var(--primary-blue);
    margin-top: 0;
    margin-bottom: 20px;
    text-align: center;
}

.commitment-box ul {
    list-style: none;
    padding-left: 0;
}

.commitment-box ul li {
    padding-left: 35px;
    position: relative;
    margin-bottom: 15px;
    color: #1565c0;
    font-weight: 500;
}

.commitment-box ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: bold;
    font-size: 22px;
}

/* Differentiators Grid */
.differentiators-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 40px 0;
}

.differentiator-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.differentiator-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.differentiator-card h4 {
    color: var(--primary-blue);
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 12px;
}

.differentiator-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 0;
}

/* Features List */
.features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.feature-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid var(--accent-gold);
}

.feature-item h4 {
    color: var(--primary-blue);
    margin-top: 0;
    margin-bottom: 12px;
}

.feature-item ul {
    margin-bottom: 0;
    padding-left: 20px;
}

.feature-item ul li {
    font-size: 16px;
    margin-bottom: 8px;
}

/* Compliance Box */
.compliance-box {
    background: #ffebee;
    padding: 25px 30px;
    border-radius: 10px;
    margin: 30px 0;
    border-left: 5px solid #f44336;
}

.compliance-box h4 {
    color: #c62828;
    margin-top: 0;
    margin-bottom: 15px;
}

.compliance-box p {
    color: #b71c1c;
    margin-bottom: 10px;
}

.compliance-box ul li {
    color: #b71c1c;
}

/* Contact Info Box */
.contact-info-box {
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin: 30px 0;
}

.contact-info-box h3 {
    color: var(--primary-blue);
    margin-top: 0;
    margin-bottom: 20px;
}

.contact-info-box p {
    font-size: 17px;
    margin-bottom: 10px;
}

.contact-info-box strong {
    color: var(--primary-blue);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #002a5c 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.cta-section h2 {
    color: white;
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn {
    font-size: 18px;
    padding: 15px 40px;
    background: var(--accent-gold);
    color: var(--primary-blue);
    border-color: var(--accent-gold);
    margin: 0 10px 10px 10px;
}

.cta-section .btn:hover {
    background: var(--white);
    color: var(--primary-blue);
    border-color: var(--white);
}

/* Closing Statement */
.closing-statement {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    margin: 40px 0;
    border: 2px solid var(--accent-gold);
    text-align: center;
}

.closing-statement p {
    font-size: 19px;
    line-height: 1.8;
    color: #333;
    font-style: italic;
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .mission-vision-container {
        grid-template-columns: 1fr;
    }

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

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

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

@media (max-width: 768px) {
    .page-header {
        padding: 60px 0 40px;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .page-header p {
        font-size: 16px;
    }

    .hero-content h2 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .section-content h2 {
        font-size: 28px;
    }

    .section-content h3 {
        font-size: 24px;
    }

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

    .cta-section h2 {
        font-size: 28px;
    }

    .cta-section .btn {
        display: block;
        margin: 10px auto;
    }
}
