
        :root {
            --primary: #0057b8;
            --secondary: #ffcc00;
            --accent: #e74c3c;
            --light: #f8f9fa;
            --dark: #343a40;
            --text: #333;
            --text-light: #6c757d;
            --white: #ffffff;
            --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }

        body {
            font-family: 'Poppins', sans-serif;
            margin: 0;
            padding: 0;
            background-color: var(--light);
            color: var(--text);
            line-height: 1.6;
        }
        
        /* HEADER */
        .header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 20px;
            background-color: var(--primary);
            color: white;
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .header .logo {
            display: flex;
            align-items: center;
            color: white;
            font-weight: bold;
            text-decoration: none;
            font-size: 14px;
        }

        .header .logo img {
            height: 40px;
            margin-right: 10px;
            transition: var(--transition);
        }

        .header .logo:hover img {
            transform: rotate(5deg);
        }

        .header .nav-container {
            flex-grow: 1;
            display: flex;
            justify-content: flex-end;
            align-items: center;
        }

        .nav-links {
            list-style: none;
            display: flex;
            gap: 10px;
            margin: 0;
            padding: 0;
        }

        .nav-links li {
            position: relative;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            font-size: 14px;
            transition: var(--transition);
            display: flex;
            align-items: center;
        }

        .nav-links a:hover {
            color: var(--secondary);
        }

        .icon-container {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            transition: var(--transition);
        }

        .icon-container:hover {
            background-color: rgba(255, 255, 255, 0.1);
            transform: translateY(-2px);
        }

        .search-container {
            display: flex;
            align-items: center;
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 30px;
            padding: 8px 15px;
            background: rgba(255, 255, 255, 0.1);
            transition: var(--transition);
            margin-left: 15px;
        }

        .search-container:hover {
            background: rgba(255, 255, 255, 0.2);
        }

        .search-container input {
            background: transparent;
            border: none;
            color: var(--white);
            outline: none;
            font-size: 0.9rem;
            width: 150px;
            padding-right: 10px;
        }

        .search-container input::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }

        .search-icon {
            color: var(--white);
            cursor: pointer;
        }

        /* HERO SECTION */
        .hero {
            background: linear-gradient(rgba(0, 87, 184, 0.8), rgba(0, 87, 184, 0.9)), url('https://images.unsplash.com/photo-1606787366850-de6330128bfc?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            color: var(--white);
            padding: 100px 20px;
            text-align: center;
            margin-bottom: 40px;
        }

        .hero h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            font-weight: 700;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .hero p {
            font-size: 1.1rem;
            max-width: 800px;
            margin: 0 auto;
            opacity: 0.9;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
        }

        /* ABOUT SECTION */
        .about-section {
            padding: 0 20px 60px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .about-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            background: var(--white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }

        .about-content {
            padding: 40px;
        }

        .section-title {
            margin-bottom: 30px;
            position: relative;
            padding-bottom: 15px;
        }

        .section-title h2 {
            font-size: 2rem;
            color: var(--primary);
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            width: 60px;
            height: 3px;
            background-color: var(--secondary);
            bottom: 0;
            left: 0;
        }

        .about-text p {
            margin-bottom: 20px;
            color: var(--text);
        }

        .about-values {
            margin-top: 30px;
        }

        .values-list {
            list-style: none;
        }

        .values-list li {
            margin-bottom: 15px;
            padding-left: 25px;
            position: relative;
        }

        .values-list li::before {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            color: var(--secondary);
            position: absolute;
            left: 0;
        }

        /* IMAGE SLIDER */
        .image-slider {
            position: relative;
            min-height: 400px;
            overflow: hidden;
            border-radius: 0 10px 10px 0;
        }

        .slider-container {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .slider-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 1s ease-in-out;
        }

        .slider-image.active {
            opacity: 1;
        }

        .slider-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to right, rgba(0, 87, 184, 0.3), rgba(0, 87, 184, 0.7));
        }

        .slider-nav {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 10;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: var(--transition);
        }

        .slider-dot.active {
            background-color: var(--secondary);
            transform: scale(1.2);
        }

        /* STATS SECTION */
        .stats-section {
            background-color: var(--primary);
            color: var(--white);
            padding: 60px 20px;
            margin: 60px 0;
        }

        .stats-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            text-align: center;
        }

        .stat-item {
            padding: 20px;
            transition: var(--transition);
        }

        .stat-item:hover {
            transform: translateY(-5px);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--secondary);
        }

        .stat-label {
            font-size: 1.1rem;
            opacity: 0.9;
        }

        /* SEARCH RESULTS */
        .search-results {
            display: none;
            position: absolute;
            top: 100%;
            right: 0;
            width: 300px;
            max-height: 400px;
            overflow-y: auto;
            background-color: var(--white);
            border-radius: 5px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            z-index: 1000;
            padding: 10px;
        }

        .search-results.active {
            display: block;
        }

        .search-item {
            padding: 10px;
            border-bottom: 1px solid #eee;
            transition: var(--transition);
        }

        .search-item:hover {
            background-color: #f5f5f5;
        }

        .search-item a {
            color: var(--text);
            text-decoration: none;
            display: block;
        }

        .search-item img {
            width: 50px;
            height: 50px;
            object-fit: cover;
            margin-right: 10px;
            border-radius: 5px;
        }

        .no-results {
            padding: 15px;
            text-align: center;
            color: var(--text-light);
        }

        /* FOOTER */
        footer {
            background-color: #232f3e;
            color: #fff;
            text-align: center;
            padding: 20px 10px;
        }
        
        .footer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .footer-bottom {
            display: flex;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
            justify-content: center;
        }
        
        .footer-logo img {
            max-height: 30px;
        }

        /* RESPONSIVE DESIGN */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .nav-links {
                gap: 8px;
            }
            
            .search-container input {
                width: 120px;
            }
        }

        @media (max-width: 768px) {
            .header {
                flex-direction: column;
                padding: 15px;
            }
            
            .logo {
                margin-bottom: 15px;
            }
            
            .nav-container {
                width: 100%;
            }
            
            .nav-links {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .search-container {
                margin: 10px auto 0;
                width: 80%;
                max-width: none;
            }
            
            .search-container input {
                width: 100%;
            }
            
            .hero {
                padding: 80px 20px;
            }
            
            .hero h1 {
                font-size: 2rem;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .about-container {
                grid-template-columns: 1fr;
            }
            
            .image-slider {
                min-height: 300px;
                border-radius: 0 0 10px 10px;
                order: -1;
            }
            
            .stats-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 480px) {
            .hero {
                padding: 60px 15px;
            }
            
            .hero h1 {
                font-size: 1.8rem;
            }
            
            .hero p {
                font-size: 0.9rem;
            }
            
            .section-title h2 {
                font-size: 1.5rem;
            }
            
            .about-content {
                padding: 30px 20px;
            }
            
            .stat-item {
                padding: 15px;
            }
            
            .stat-number {
                font-size: 2rem;
            }
            
            .stats-container {
                grid-template-columns: 1fr;
            }
            
            .search-results {
                width: 100%;
                left: 0;
            }
        }