/* --- Styles Specific to the About Us Page --- */

/* Section 1: Page Title */
.page-title-section {
    padding: 60px 0;
    text-align: center;
    border-bottom: 1px solid #444;
}

.page-title-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

/* Section 2: Main Content */
.about-content-section {
    padding: 60px 0; /* Add padding to section */
}

/* Re-apply container padding for sections */
.about-content-section .container {
    padding: 0 20px;
}

.about-content-section .grid-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text-content {
    flex: 1;
}

.about-image-content {
    flex: 1;
    text-align: center;
}

.about-text-content h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    line-height: 1.3;
}

.about-image-content img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    border: 4px solid var(--primary-color);
}

/* Company Signature Block */
.company-signature {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid #444;
}

.company-signature .logo {
    width: 80px;
    height: 80px;
}

.company-signature .company-info h3 {
    font-size: 1.8rem;
    margin: 0;
    color: var(--text-color);
}

.company-signature .company-info p {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
    margin: 0;
}

/* --- Responsive Design --- */
@media (max-width: 992px) {
    .about-content-section .grid-container {
        flex-direction: column;
        text-align: center;
    }
    .about-text-content h2 {
        font-size: 2.2rem;
    }
    .company-signature {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .page-title-section h1 {
        font-size: 2.5rem;
    }
}
/* --- Section 3: Mission --- */
.mission-section {
    background-color: #1a1818; /* A slightly different background for emphasis */
    padding: 60px 0;
    text-align: center;
}
.mission-section .container {
    max-width: 800px; /* Constrain width for readability */
}
.mission-section h2 {
    margin-bottom: 20px;
    font-size: 2.5rem;
}

/* --- Section 4: Why Choose Us --- */
.why-choose-us-section {
    padding: 80px 0;
}
.why-choose-us-section .section-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px auto;
}
.why-choose-us-section .section-intro h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.value-card {
    background-color: #2c2929;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #444;
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.value-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}
.value-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

/* --- Section 5: Legal & Compliance --- */
.legal-info-section {
    background-color: #1a1818;
    padding: 60px 0;
    border-top: 1px solid #444;
    border-bottom: 1px solid #444;
}
.legal-grid {
    display: flex;
    gap: 50px;
}
.legal-details, .compliance-details {
    flex: 1;
}
.legal-details h3, .compliance-details h3 {
    margin-bottom: 20px;
    font-size: 1.6rem;
}
.legal-details p {
    line-height: 1.8;
}
.legal-details strong {
    color: var(--primary-color);
}

/* --- Section 6: Call to Action (CTA) --- */
.cta-section {
    padding: 80px 0;
    text-align: center;
}
.cta-section .container {
    max-width: 850px;
}
.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}
.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Allows buttons to stack on small screens */
}
/* New style for a secondary button */
.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}
.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--text-color);
}

/* --- Add to Responsive Section at the end of the file --- */
@media (max-width: 992px) {
    .legal-grid {
        flex-direction: column;
    }
}