
        /* Page Header */
        .page-header {
            height: 50vh;
            background: linear-gradient(rgba(35, 46, 60, 0.7), rgba(35, 46, 60, 0.7)), url('../img/about/about_hero.jpg') no-repeat center center/cover;
            display: flex;
            align-items: center;
            color: var(--white);
            position: relative;
        }
        
        .page-header-content {
            max-width: 800px;
        }
        
        .page-header h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }
        
        .breadcrumb {
            background: transparent;
            padding: 0;
            margin-bottom: 0;
        }
        
        .breadcrumb-item a {
            color: var(--sky-blue);
            text-decoration: none;
        }
        
        .breadcrumb-item.active {
            color: var(--white);
        }
        
        /* Section Padding */
        section {
            padding: 80px 0;
        }
        
        .section-title {
            margin-bottom: 50px;
            position: relative;
        }
        
        .section-title:after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background-color: var(--deep-blue);
            margin-top: 15px;
        }
        
        /* About Section */
        .about-img {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        /* Mission & Vision */
        .mission-vision {
            background-color: #f8f9fa;
        }
        
        .mv-card {
            background: var(--white);
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 30px;
            height: 100%;
            padding: 30px;
            text-align: center;
        }
        
        .mv-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .mv-icon {
            font-size: 3rem;
            color: var(--deep-blue);
            margin-bottom: 20px;
        }
        
        /* Values Section */
        .values-container {
            background: linear-gradient(rgba(35, 46, 60, 0.8), rgba(35, 46, 60, 0.8)), url('../img/about/about_2.jpg') no-repeat center center/cover;
            color: var(--white);
            border-radius: 10px;
            padding: 50px 30px;
        }
        
        .value-item {
            text-align: center;
            margin-bottom: 30px;
            padding: 0 20px;
        }
        
        .value-icon {
            font-size: 2.5rem;
            color: var(--sky-blue);
            margin-bottom: 15px;
        }
        
        /* Approach Section */
        .approach-step {
            display: flex;
            margin-bottom: 40px;
            align-items: flex-start;
        }
        
        .step-number {
            background-color: var(--deep-blue);
            color: var(--white);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            margin-right: 20px;
            flex-shrink: 0;
        }
        
        /* CTA Section */
        .cta {
            background-color: var(--deep-blue);
            color: var(--white);
        }
        
        .btn-light {
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .btn-light:hover {
            background-color: var(--sky-blue);
            border-color: var(--sky-blue);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        /* Responsive Styles */
        @media (max-width: 992px) {
            .page-header h1 {
                font-size: 2.5rem;
            }
            
            .navbar-collapse {
                background-color: var(--dark-navy);
                padding: 20px;
                border-radius: 10px;
                margin-top: 15px;
            }
        }
        
        @media (max-width: 768px) {
            section {
                padding: 60px 0;
            }
            
            .page-header h1 {
                font-size: 2rem;
            }
            
            .section-title {
                margin-bottom: 30px;
            }
            
            .approach-step {
                flex-direction: column;
            }
            
            .step-number {
                margin-bottom: 15px;
                margin-right: 0;
            }
        }
        
        @media (max-width: 576px) {
            .page-header {
                height: 40vh;
            }
            
            .page-header h1 {
                font-size: 1.8rem;
            }
        }