/* Page Header */
.page-header {
    background-color: #f4f8f7;
    padding: 40px 0;
    border-bottom: 1px solid #e9ecef;
}

.page-header .breadcrumb {
    background-color: transparent;
    padding: 0;
    margin-bottom: 10px;
}

.page-header .breadcrumb-item a {
    color: #333;
    font-weight: 500;
    text-decoration: none;
}
.page-header .breadcrumb-item a:hover {
    color: var(--primary);
}

.page-header .breadcrumb-item.active {
    color: #555;
}

.page-header .page-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2c3e50;
    text-align: left;
}

.section-title {
    font-weight: 700;
    color: #333;
    font-size: 2rem;
}

.bar-border {
    height: 4px;
    background-color: var(--primary);
    border-radius: 5px;
}
.bar-border-02-200 {
    width: 80px;
}

.intro-section .lead {
    font-size: 1.2rem;
    color: #555;
}

.mission-section h3 {
    font-size: 2rem;
    color: #333;
}
.mission-section p,
.mission-section ul {
    font-size: 1.1rem;
    color: #555;
}
.mission-section .text-theme {
    color: var(--primary) !important;
}

.values-section {
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

.value-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
    color: var(--primary);
}

.value-card h4 {
    font-weight: 600;
}

.cta-section h2 {
    font-weight: 700;
}

.cta-section .btn-theme {
    transition: all 0.3s ease;
}
.cta-section .btn-theme:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
}

.reference-logo {
    width: 100%;
    max-width: 200px;
    height: 200px;
    object-fit: contain;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .mission-section .col-lg-5,
    .mission-section .col-lg-7 {
        text-align: center;
    }

    .mission-section .list-unstyled {
        display: inline-block;
        text-align: left;
        margin: 0 auto;
    }

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