/* About Page Specific Styles */

/* Page Header */
.page-header {
    margin-top: 82px;
    padding: 5rem 0 4rem;
    background: linear-gradient(135deg, var(--navy-blue-dark) 0%, var(--navy-blue) 100%) !important;
    color: var(--white) !important;
    text-align: center;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
    color: var(--white) !important;
    line-height: 1.2;
}

.page-subtitle {
    font-size: 1.35rem;
    font-weight: 400;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
    color: var(--white) !important;
    line-height: 1.5;
}

/* Main Content */
.about-main {
    padding: 6rem 0;
    background: var(--white);
}

.content-wrapper {
    max-width: 850px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-content {
    margin-bottom: 4rem;
}

.intro-text {
    font-size: 1.25rem;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-weight: 500;
}

.body-text {
    font-size: 1.1rem;
    line-height: 1.85;
    color: var(--text-dark);
    margin-bottom: 1.75rem;
}

/* Company Info Block */
.company-info-block {
    background: var(--gray-light);
    border-left: 4px solid var(--navy-blue);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    margin-bottom: 4rem;
}

.info-block-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: 2rem;
    text-align: left;
    line-height: 1.3;
}

.company-info-table {
    width: 100%;
    border-collapse: collapse;
}

.company-info-table tr {
    border-bottom: 1px solid var(--gray-medium);
}

.company-info-table tr:last-child {
    border-bottom: none;
}

.company-info-table td {
    padding: 1.25rem 0;
    vertical-align: top;
}

.info-label {
    font-weight: 600;
    color: var(--navy-blue);
    width: 40%;
    font-size: 1rem;
    line-height: 1.6;
}

.info-value {
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.6;
}

/* CTA Section */
.about-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--gray-light);
    border-radius: 12px;
}

.cta-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.cta-text {
    font-size: 1.15rem;
    color: var(--gray-dark);
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.cta-button.secondary {
    background: var(--white);
    color: var(--navy-blue);
    border: 2px solid var(--navy-blue);
}

.cta-button.secondary:hover {
    background: var(--navy-blue);
    color: var(--white);
    border-color: var(--navy-blue);
}

/* Active Nav Link */
.nav-menu a.active {
    color: var(--navy-blue);
    position: relative;
}

.nav-menu a.active::after {
    width: 100%;
}

/* Responsive Design */
@media (max-width: 968px) {
    .page-title {
        font-size: 2.5rem;
    }

    .page-subtitle {
        font-size: 1.15rem;
    }

    .content-wrapper {
        padding: 0 1.5rem;
    }

    .info-label,
    .info-value {
        display: block;
        width: 100%;
    }

    .info-label {
        padding-bottom: 0.5rem;
        font-weight: 700;
    }

    .info-value {
        padding-top: 0;
    }

    .company-info-table td {
        padding: 1rem 0;
    }
}

@media (max-width: 640px) {
    .page-header {
        margin-top: 72px;
        padding: 3.5rem 0 2.5rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }

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

    .content-wrapper {
        padding: 0 1.5rem;
    }

    .intro-text {
        font-size: 1.1rem;
    }

    .body-text {
        font-size: 1rem;
    }

    .company-info-block {
        padding: 2rem 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-button {
        width: 100%;
    }

    .info-block-title {
        font-size: 1.5rem;
    }
}
