        :root {
            --bs-primary: #1a4d7a;
            --bs-secondary: #2c7da0;
            --bs-accent: #e07a5f;
            --bs-dark: #1e2a35;
            --bs-light: #f4f6f8;
            --bs-grey: #6b7885;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            color: var(--bs-dark);
            line-height: 1.7;
            background-color: #ffffff;
        }
        
        h1, h2, h3, h4 {
            font-weight: 700;
            line-height: 1.2;
        }
        
        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, var(--bs-primary) 0%, var(--bs-secondary) 100%);
            color: white;
            padding: 6rem 0 4rem;
            position: relative;
            overflow: hidden;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            opacity: 0.3;
        }
        
        .hero-content {
            position: relative;
            z-index: 1;
        }
        
        .hero-section h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            margin-bottom: 1.5rem;
            animation: fadeInUp 0.8s ease-out;
        }
        
        .hero-lead {
            font-size: clamp(1.1rem, 2vw, 1.35rem);
            font-weight: 300;
            max-width: 900px;
            margin: 0 auto;
            opacity: 0.95;
            animation: fadeInUp 0.8s ease-out 0.2s backwards;
        }
        
        /* Section Styling */
        section {
            padding: 5rem 0;
        }
        
        .section-title {
            font-size: clamp(2rem, 4vw, 3rem);
            margin-bottom: 3rem;
            position: relative;
            display: inline-block;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 4px;
            background: var(--bs-accent);
        }
        
        /* Introduction Section */
        .intro-section {
            background: var(--bs-light);
        }
        
        .intro-text {
            font-size: 1.2rem;
            line-height: 1.8;
            color: var(--bs-dark);
        }
        
        .intro-highlight {
            background: white;
            border-left: 4px solid var(--bs-accent);
            padding: 2rem;
            margin: 2rem 0;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
        }
        
        /* Values Cards */
        .value-card {
            background: white;
            border: none;
            border-radius: 0;
            height: 100%;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            position: relative;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        }
        
        .value-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--bs-primary), var(--bs-accent));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }
        
        .value-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 24px rgba(0,0,0,0.15);
        }
        
        .value-card:hover::before {
            transform: scaleX(1);
        }
        
        .value-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--bs-primary), var(--bs-secondary));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 2rem;
            color: white;
            transition: transform 0.3s ease;
        }
        
        .value-card:hover .value-icon {
            transform: rotate(360deg) scale(1.1);
        }
        
        .value-title {
            font-size: 1.8rem;
            color: var(--bs-primary);
            margin-bottom: 1rem;
        }
        
        /* Approach Section */
        .approach-section {
            background: linear-gradient(to bottom, white 0%, var(--bs-light) 100%);
        }
        
        .approach-item {
            margin-bottom: 3rem;
            padding-left: 2rem;
            border-left: 3px solid var(--bs-secondary);
            transition: all 0.3s ease;
        }
        
        .approach-item:hover {
            border-left-color: var(--bs-accent);
            padding-left: 2.5rem;
        }
        
        .approach-item h3 {
            font-size: 1.8rem;
            color: var(--bs-primary);
            margin-bottom: 1rem;
        }
        
        /* CTA Section */
        .cta-section {
            color: white;
            text-align: center;
        }
        
        .cta-section h2 {
            font-size: clamp(2rem, 4vw, 3rem);
            margin-bottom: 1.5rem;
        }
        
        .cta-section p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            opacity: 0.9;
        }
        
        .btn-adnous {
            background: var(--bs-accent);
            color: white;
            padding: 1rem 2.5rem;
            font-size: 1.1rem;
            font-weight: 500;
            border: none;
            border-radius: 0;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
        }
        
        .btn-adnous:hover {
            background: #d66a4f;
            transform: translateY(-2px);
            box-shadow: 0 8px 16px rgba(224, 122, 95, 0.3);
            color: white;
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .fade-in {
            animation: fadeInUp 0.8s ease-out;
        }
        
        /* Accessibility */
        .skip-link {
            position: absolute;
            top: -40px;
            left: 0;
            background: var(--bs-primary);
            color: white;
            padding: 8px;
            text-decoration: none;
            z-index: 100;
        }
        
        .skip-link:focus {
            top: 0;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero-section {
                padding: 4rem 0 3rem;
            }
            
            section {
                padding: 3rem 0;
            }
            
            .approach-item {
                padding-left: 1rem;
            }
        }