/* About Page Using Bootstrap-style :root variables */
.about-page-wrapper {
    font-family: var(--bs-body-font-family);
    color: var(--bs-body-color);
    line-height: var(--bs-body-line-height);
    background-color: var(--bs-body-bg);
}

.section-padding {
    padding: 40px 0;
}

/* Using light gray/whisper for beige sections to contrast with white */
.bg-beige {
    background-color: var(--bs-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

/* Typography */
.sub-title {
    color: var(--bs-primary);
    font-family: var(--bs-body-font-family);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.section-title {
    font-family: var(--bs-body-font-family);
    font-size: 36px;
    color: var(--bs-dark);
    margin-bottom: 20px;
    font-weight: 700;
}

.section-desc {
    max-width: 700px;
    margin: 0 auto;
    color: var(--bs-gray-600);
}

/* Flexbox Layouts */
.row-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.col-half {
    flex: 1;
    min-width: 300px;
}

/* Who We Are */
.image-col img {
    width: 100%;
    height: auto;
    border-radius: var(--bs-border-radius-lg);
    box-shadow: 0 10px 30px rgba(var(--bs-black-rgb), 0.1);
}

.content-col p {
    margin-bottom: 15px;
}

/* Mission & Vision Cards */
.card-box {
    background: var(--bs-white);
    padding: 40px;
    border-radius: var(--bs-border-radius-lg);
    box-shadow: 0 5px 20px rgba(var(--bs-black-rgb), 0.05);
    transition: transform 0.3s ease;
    border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color);
}

.card-box:hover {
    transform: translateY(-5px);
    border-color: var(--bs-primary);
}

.icon-box {
    font-size: 40px;
    margin-bottom: 20px;
}

.card-box h3 {
    font-family: 'Playfair Display', serif;
    color: var(--bs-dark);
    margin-bottom: 15px;
    font-size: 24px;
}

/* Strengths Grid */
.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.strength-card {
    background: var(--bs-white);
    padding: 30px 20px;
    border-radius: var(--bs-border-radius);
    box-shadow: 0 4px 15px rgba(var(--bs-black-rgb), 0.03);
    border-bottom: 3px solid var(--bs-primary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.strength-card:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.strength-card h4 {
    color: var(--bs-dark);
    margin-bottom: 10px;
    font-size: 18px;
    font-family: 'Playfair Display', serif;
}

.strength-card:hover h4,
.strength-card:hover p {
    color: var(--bs-white);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .section-title {
        font-size: 28px;
    }

    .section-padding {
        padding: 50px 0;
    }
}

.main-header.header-sticky {
    background-color: var(--bs-primary) !important;
}

