        :root {
            --primary-color: #979797;
            --secondary-color: #eeeeee;
            --background-color: #1E5F8A;
            --text-color: #eeeeee;
            --accent-color: #F0F4F8;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #333;
            line-height: 1.6;
        }
        
        /* Navbar Styles */
        .navbar {
            padding: 20px 0;
            background-color: transparent !important;
        }
        
        .navbar-nav {
            justify-content: center;
            width: 100%;
        }
        
        .navbar-nav .nav-item {
            margin: 0 15px;
        }
        
        .navbar-nav .nav-link {
            color: #333;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--background-color);
        }
        
        .btn-cta {
            background-color: var(--background-color);
            color: white;
            padding: 8px 20px;
            border-radius: 4px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .btn-cta:hover {
            background-color: #164b6e;
            color: white;
        }
        
        /* Hero Section */
        .hero-section {
            padding: 100px 0;
            background-color: var(--background-color);
            color: var(--text-color);
        }
        
        .hero-content h1 {
            font-size: 4rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }
        
        .btn-hero {
            background-color: var(--accent-color);
            color: var(--background-color);
            padding: 12px 30px;
            border-radius: 4px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
        }
        
        .btn-hero:hover {
            background-color: white;
            color: var(--background-color);
        }
        
        /* Section Styles */
        .section-padding {
            padding: 80px 0;
        }
        
        .light-bg {
            background-color: #f8f9fa;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--background-color);
            position: relative;
            display: inline-block;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 4px;
            background-color: var(--primary-color);
        }
        
        .section-subtitle {
            color: #666;
            margin-bottom: 40px;
        }
        
        /* About Section */
        .about-image {
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .about-content h3 {
            font-size: 1.8rem;
            font-weight: 600;
            margin-bottom: 20px;
            color: var(--background-color);
        }
        
        .btn-read-more {
            color: var(--background-color);
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            margin-top: 15px;
            transition: all 0.3s ease;
        }
        
        .btn-read-more:hover {
            color: #164b6e;
            text-decoration: underline;
        }
        
        /* Counter Section */
        .counter-section {
            background-color: var(--background-color);
            color: var(--text-color);
        }
        
        .counter-item {
            text-align: center;
            padding: 20px 0;
        }
        
        .counter-item i {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: var(--accent-color);
        }
        
        .counter {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .counter-title {
            font-size: 1.2rem;
            font-weight: 500;
        }
        
        /* Vision & Mission Section */
        .vision-mission-item {
            background-color: white;
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            height: 100%;
            transition: all 0.3s ease;
        }
        
        .vision-mission-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .vision-mission-item i {
            font-size: 2.5rem;
            color: var(--background-color);
            margin-bottom: 20px;
        }
        
        .vision-mission-item h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--background-color);
        }
        
        /* Why Choose Us Section */
        .why-choose-item {
            text-align: center;
            padding: 20px;
            transition: all 0.3s ease;
        }
        
        .why-choose-item i {
            font-size: 2.5rem;
            color: var(--background-color);
            margin-bottom: 15px;
        }
        
        .why-choose-item h3 {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--background-color);
        }
        
        /* Services Section */
        .service-card {
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .service-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        .service-card-body {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .service-card-body h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--background-color);
        }
        
        .service-card-body p {
            margin-bottom: 20px;
            flex-grow: 1;
        }
        
        /* CTA Section */
        .cta-section {
            background-color: var(--background-color);
            color: var(--text-color);
            text-align: center;
            padding: 80px 0;
        }
        
        .cta-section h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .btn-cta-large {
            background-color: var(--accent-color);
            color: var(--background-color);
            padding: 15px 40px;
            border-radius: 4px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            border: none;
        }
        
        .btn-cta-large:hover {
            background-color: white;
            color: var(--background-color);
        }
        
        /* FAQ Section */
        .accordion-button {
            background-color: white;
            color: var(--background-color);
            font-weight: 600;
            box-shadow: none;
        }
        
        .accordion-button:not(.collapsed) {
            background-color: var(--background-color);
            color: white;
        }
        
        .accordion-button:focus {
            box-shadow: none;
            border-color: rgba(0,0,0,.125);
        }
        
        .accordion-body {
            color: #555;
        }
        
        /* Review Section */
        .review-card {
            background-color: white;
            border-radius: 8px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 20px;
            height: 100%;
        }
        
        .review-card .stars {
            color: #ffc107;
            margin-bottom: 15px;
        }
        
        .review-card p {
            font-style: italic;
            margin-bottom: 20px;
        }
        
        .review-card .client-info {
            display: flex;
            align-items: center;
        }
        
        .review-card .client-info img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 15px;
            object-fit: cover;
        }
        
        .review-card .client-info h4 {
            font-size: 1.1rem;
            margin-bottom: 0;
        }
        
        .review-card .client-info p {
            margin-bottom: 0;
            font-style: normal;
            font-size: 0.9rem;
            color: #666;
        }
        
        /* Newsletter Section */
        .newsletter-section {
            background-color: var(--background-color);
            color: var(--text-color);
            padding: 60px 0;
        }
        
        .newsletter-form {
            max-width: 600px;
            margin: 0 auto;
        }
        
        .newsletter-form input {
            padding: 12px 20px;
            border: none;
            border-radius: 4px 0 0 4px;
            width: 70%;
        }
        
        .newsletter-form button {
            background-color: var(--accent-color);
            color: var(--background-color);
            border: none;
            padding: 12px 25px;
            border-radius: 0 4px 4px 0;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .newsletter-form button:hover {
            background-color: white;
        }
        
        /* Contact Section */
        .contact-info-item {
            margin-bottom: 25px;
        }
        
        .contact-info-item i {
            font-size: 1.5rem;
            color: var(--background-color);
            margin-right: 15px;
            width: 30px;
            text-align: center;
        }
        
        .contact-form input, .contact-form textarea {
            border: 1px solid #ddd;
            border-radius: 4px;
            padding: 12px 15px;
            margin-bottom: 20px;
            width: 100%;
        }
        
        .contact-form button {
            background-color: var(--background-color);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 4px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .contact-form button:hover {
            background-color: #164b6e;
        }
        
        /* Footer */
        footer {
            background-color: #222;
            color: var(--text-color);
            padding: 70px 0 20px;
        }
        
        footer h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 15px;
        }
        
        footer h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: var(--background-color);
        }
        
        footer ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        footer ul li {
            margin-bottom: 12px;
        }
        
        footer ul li a {
            color: #bbb;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        footer ul li a:hover {
            color: var(--background-color);
            padding-left: 5px;
        }
        
        .footer-subscribe input {
            background-color: #333;
            border: 1px solid #444;
            color: white;
            padding: 10px 15px;
            border-radius: 4px;
            width: 100%;
            margin-bottom: 15px;
        }
        
        .footer-subscribe button {
            background-color: var(--background-color);
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 4px;
            font-weight: 600;
            transition: all 0.3s ease;
            width: 100%;
        }
        
        .footer-subscribe button:hover {
            background-color: #164b6e;
        }
        
        .copyright {
            border-top: 1px solid #333;
            margin-top: 50px;
            padding-top: 20px;
            text-align: center;
            color: #bbb;
        }
        
        .copyright a {
            color: #bbb;
            text-decoration: none;
            margin: 0 10px;
            transition: all 0.3s ease;
        }
        
        .copyright a:hover {
            color: var(--background-color);
        }
