	    .hero-section {
            position: relative;
            min-height: 80vh;
            display: flex;
            align-items: center;
            overflow: hidden;
            padding-top: 80px;
        }
        .hero-bg {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            object-fit: cover;
            z-index: -1;
        }
        .hero-overlay {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: linear-gradient(90deg, rgba(35, 105, 142, 0.4) 0%, transparent 100%);
            z-index: 0;
        }
        .glass-panel {
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(6px);
            padding: 3rem;
            border-radius: 1rem;
            border-left: 5px solid var(--secondary);
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
        }
        .dark .glass-panel {
            background: rgba(30, 30, 30, 0.85);
        }

        /* Sections */
        .section-padding { padding: 100px 0; }
        
        .value-card {
            background: var(--white);
            border: 1px solid rgba(0,0,0,0.1);
            border-radius: 1rem;
            padding: 2.5rem;
            height: 100%;
            transition: all 0.3s ease;
        }
        .value-card:hover {
            border-color: var(--secondary);
            transform: translateY(-5px);
        }
        .icon-box {
            width: 64px;
            height: 64px;
            background: rgba(35, 105, 142, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: var(--primary);
        }

        /* Team */
        .team-card img {
            border-radius: 1rem;
            aspect-ratio: 4/5;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .team-card:hover img { transform: scale(1.03); }
        .team-overlay {
            position: absolute;
            bottom: 0; left: 0; right: 0;
            background: rgba(35, 105, 142, 0.9);
            color: white;
            padding: 1rem;
            transform: translateY(100%);
            transition: transform 0.3s ease;
            border-bottom-left-radius: 1rem;
            border-bottom-right-radius: 1rem;
        }
        .team-card:hover .team-overlay { transform: translateY(0); }
        
        .btn-brand {
            background-color: var(--primary);
            color: white;
            padding: 10px 25px;
            font-family: 'Montserrat', sans-serif;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            border-radius: 4px;
            border: none;
        }
        .btn-secondary-brand {
            background-color: var(--secondary);
            border-radius: 50px;
            padding: 15px 35px;
        }
        .text-primary-brand { color: var(--primary) !important; }
        .text-secondary-brand { color: var(--secondary) !important; }
        .bg-primary-brand { background-color: var(--primary) !important; }
        .bg-secondary-brand { background-color: var(--secondary) !important; }