

        .inner-hero-section {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 120px 0 80px;
            margin-bottom: 40px;
        }
        
        .inner-section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 30px;
            color: #00334E;
        }
        
        .inner-section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 70px;
            height: 4px;
            background-color: #de2628;
        }
        
        .history-section {            
            padding: 60px 0;
            border-radius: 10px;
        }
        
        .founders-section {
            padding: 60px 0;
        }
        
        .founder-card {
            border: none;
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
            height: 100%;
            background-color: white;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        }
        
        .founder-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .founder-img {
            height: 200px;
            background-color: #e0e0e0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 80px;
            color: #00334E;
        }
        
        .founder-card .card-body {
            padding: 25px;
        }
        
        .founder-name {
            color: #00334E;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .founder-degree {
            color: #de2628;
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        .principles-list {
            list-style-type: none;
            padding-left: 0;
        }
        
        .principles-list li {
            padding: 8px 0;
            padding-left: 30px;
            position: relative;
        }
        
.principles-list li::before {
    content: "\f058"; /* circle-check */
    font-family: "Font Awesome 6 Pro";
    font-weight: 900; /* Solid */
    color: #00334E;
    position: absolute;
    left: 0;
}

        
        .highlight-box {
            background-color: white;
            border-left: 5px solid #de2628;
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 10px 10px 0;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        .card-title {
            color: #00334E !important;
            font-weight: 700;
        }
        @media (max-width: 768px) {
            .inner-hero-section {
                padding: 80px 0 50px;
            }
            
            .founder-card {
                margin-bottom: 30px;
            }
        }