
        :root {
            --primary-color: #203348;
            --secondary-color: #686e80;
            --text-color: #6d6e6f;
            --light-bg: #F4F6F4;
            --white: #FFFFFF;
            --dark: #000000;
        }
        
        body {
            font-family: 'Open Sans', sans-serif;
            color: var(--text-color);
            background-color: var(--light-bg);
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
        }
        
        .light-weight {
            font-weight: 200;
        }
        
        .hero-section {
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../hero.jpg');
            background-size: cover;
            background-position: center;
            color: var(--white);
            padding: 135px 0;
            min-height: 670px;
            display: flex;
            align-items: center;
        }
        
        .navbar {
            background-color: transparent !important;
            position: absolute;
            width: 100%;
            z-index: 1000;
        }
        
        .navbar-brand img {
            max-width: 115px;
        }
        
        .navbar-dark .navbar-nav .nav-link {
            color: var(--white);
        }
        
        .btn-outline-light {
            border-radius: 0;
            padding: 15px 45px;
            text-transform: uppercase;
            font-weight: 500;
        }
        
        .btn-white {
            background-color: var(--white);
            color: var(--dark);
            border-radius: 0;
            padding: 15px 45px;
            text-transform: uppercase;
            font-weight: 500;
        }
        
        .info-box {
            background-color: var(--white);
            padding: 50px;
            margin-top: -100px;
            position: relative;
            z-index: 10;
        }
        
        .primary-bg {
            background-color: var(--primary-color);
            color: var(--white);
        }
        
        .stats-box {
            border: 1px solid #e1e1e1;
            padding: 50px;
            background-color: var(--white);
        }
        
        .stats-box h2 {
            margin-bottom: 5px;
        }
        
        .service-item {
            border-top: 1px solid var(--white);
            padding: 32px 0;
            transition: all 0.3s;
        }
        
        .service-item:hover {
            border-top: 1px solid var(--primary-color);
        }
        
        .testimonial-card {
            background-color: var(--text-color);
            border-bottom: 6px solid var(--primary-color);
            padding: 50px;
            color: var(--white);
            margin: 10px;
        }
        
        .sector-card {
            background-size: cover;
            background-position: center;
            color: var(--white);
            padding: 350px 50px 50px 50px;
            position: relative;
        }
        
        .sector-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(0deg, rgba(33, 45, 69, 0.8) 29%, rgba(255, 255, 255, 0) 49%);
            z-index: 1;
        }
        
        .sector-card .content {
            position: relative;
            z-index: 2;
        }
        
        .footer {
            background-color: var(--primary-color);
            color: var(--white);
            padding: 100px 0 0;
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(195, 193, 193, 0.27);
            padding: 20px 0;
        }
        
        .social-icons a {
            color: var(--primary-color);
            margin: 0 10px;
            font-size: 20px;
            transition: all 0.3s;
        }
        
        .social-icons a:hover {
            color: var(--white);
        }
        
        .footer a {
            color: var(--white);
            text-decoration: none;
        }
        
        .footer a:hover {
            color: var(--secondary-color);
        }
        
        .footer ul {
            list-style: none;
            padding-left: 0;
        }
        
        .footer ul li {
            margin-bottom: 10px;
        }
        
        .divider {
            width: 50px;
            height: 1px;
            background-color: var(--primary-color);
            margin: 10px 0;
        }
        
        @media (max-width: 768px) {
            .hero-section {
                min-height: 500px;
                padding: 100px 0;
            }
            
            .info-box {
                margin-top: 0;
                padding: 30px;
            }
            
            .stats-box {
                padding: 30px;
            }
            
            .sector-card {
                padding: 200px 30px 30px 30px;
            }
        }
    