 :root {
            --primary-color: #134e4a;   /* Dark green from the logo */
            --accent-color: #f97316;    /* Bright orange from the logo */
            --light-bg-color: #c5ddf4;  /* Light background for sections */
            --text-color-dark: #333;
            --text-color-light: #fff;
            --secondary-text-color: #666;
            --box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            --hover-shadow: 0 8px 20px rgba(0,0,0,0.12);
        }

        /* Global styles */
        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            margin: 0;
            padding: 0;
            background-color: #f8f8f8;
            color: var(--text-color-dark);
            scroll-behavior: smooth;
        }

        /* Container for consistent content width */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Section Headers */
        .section-header {
            text-align: center;
            padding: 40px 20px 20px;
            margin-bottom: 40px;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 10px;
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: var(--secondary-text-color);
            max-width: 800px;
            margin: 0 auto;
        }

        /* Buttons */
        .btn {
            display: inline-block;
            padding: 12px 25px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            transition: background-color 0.3s ease, color 0.3s ease;
            cursor: pointer;
            border: none;
            text-align: center;
        }

        .btn-primary {
            background-color: var(--primary-color);
            color: var(--text-color-light);
        }

        .btn-primary:hover {
            background-color: #0c3a37; 
        }

        .btn-secondary {
            background-color: transparent;
            color: var(--primary-color);
            border: 2px solid var(--primary-color);
        }

        .btn-secondary:hover {
            background-color: var(--primary-color);
            color: var(--text-color-light);
        }

        .btn-submit {
            background-color: var(--accent-color);
            color: var(--text-color-light);
            padding: 12px 30px;
            font-size: 1rem;
        }

        .btn-submit:hover {
            background-color: #e5630a; 
        }

        /* Images */
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        /* Header and Navigation */
        .main-header {
            background-color: transparent; 
            padding: 15px 0;
            position: fixed; 
            top: 0;
            z-index: 1000;
            width: 100%;
            transition: background-color 0.3s ease, box-shadow 0.3s ease;
        }

        /* Class added by JavaScript when scrolled */
        .main-header.scrolled {
            background-color: var(--primary-color);
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-link .logo {
            height: 60px;
            width: auto;
        }

        /* Desktop Navigation */
        .desktop-nav {
            display: flex;
            align-items: center;
        }

        .nav-link {
            color: var(--text-color-light); 
            text-decoration: none;
            padding: 10px 15px;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .main-header.scrolled .nav-link {
            color: var(--text-color-light); 
        }

        .nav-link:hover {
            color: var(--accent-color);
        }

        /* Mobile Menu Button (Hamburger Icon) */
        .mobile-menu-button-container {
            display: none;
        }

        .mobile-menu-button {
            background: none;
            border: none;
            cursor: pointer;
            padding: 10px;
        }

        .mobile-menu-button svg {
            height: 30px;
            width: 30px;
            color: var(--text-color-light);
        }

        .main-header.scrolled .mobile-menu-button svg {
            color: var(--text-color-light);
        }


        /* Mobile Menu (initially hidden) */
        .mobile-menu {
            display: none;
            flex-direction: column;
            background-color: rgba(19, 78, 74, 0.9); 
            padding: 10px 20px;
            border-top: 1px solid #eee;
            width: 100%;
            position: absolute;
            top: 90px;
            left: 0;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .mobile-menu.hidden {
            display: none;
        }

        .mobile-nav-link {
            display: block;
            padding: 12px 0;
            text-decoration: none;
            color: var(--text-color-light);
            border-bottom: 1px solid rgba(255,255,255,0.2);
        }

        .mobile-nav-link:last-child {
            border-bottom: none;
        }

        .mobile-nav-link:hover {
            color: var(--accent-color);
        }

        /* Responsive adjustments for header/nav */
        @media (max-width: 900px) {
            .desktop-nav {
                display: none;
            }
            .mobile-menu-button-container {
                display: block;
            }
            .header-container {
                padding: 0 15px;
            }
        }

        /* Sections */
        .home-section {
            background: linear-gradient(rgba(19, 78, 74, 0.7), rgba(19, 78, 74, 0.7)), url('recp.jpg') no-repeat center center/cover;
            color: var(--text-color-light);
            text-align: center;
            padding: 100px 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 500px;
        }

        .home-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .home-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .home-text {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }

        .home-buttons .btn {
            margin: 0 10px;
        }

        /* General section styling for spacing */
        .about-section,
        .services-section,
        .countries-section,
        .process-section,
        .gallery-section,
        .contact-section {
            padding: 80px 0;
            background-color: var(--text-color-light);
        }

        /* Alternate background for visual separation */
        .services-section,
        .process-section {
            background-color: var(--light-bg-color);
        }

        /* Image and Text Display */
        .about-card,
        .service-card,
        .country-card,
        .process-step {
            background-color: var(--text-color-light);
            padding: 30px;
            border-radius: 8px;
            box-shadow: var(--box-shadow);
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%; /* Ensures all cards in a grid have the same height */
        }

        .about-card:hover,
        .service-card:hover,
        .country-card:hover,
        .process-step:hover {
            transform: translateY(-5px);
            box-shadow: var(--hover-shadow);
        }

        .about-card-icon {
            margin-bottom: 20px;
        }

        .about-card-icon svg {
            height: 60px;
            width: 60px;
            color: var(--accent-color);
        }

        .about-card-title,
        .service-card-title,
        .country-name {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 10px;
        }

        .about-card-text,
        .process-step-text {
            font-size: 1rem;
            color: var(--secondary-text-color);
        }

        .service-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 8px 8px 0 0;
        }

        .service-card-title {
            padding: 15px 20px 10px;
        }

        .service-list {
            list-style: none;
            padding: 0 20px 20px;
            margin: 0;
            text-align: left;
        }

        .service-list li {
            font-size: 1rem;
            color: var(--secondary-text-color);
            margin-bottom: 8px;
            position: relative;
            padding-left: 20px;
        }

        .service-list li:last-child {
            margin-bottom: 0;
        }

        .service-list li::before {
            content: '•';
            color: var(--primary-color);
            position: absolute;
            left: 0;
            font-size: 1.2em;
            line-height: 1;
        }

        .country-flag {
            width: 100px;
            height: 70px;
            margin: 0 auto 15px;
            overflow: hidden;
            border-radius: 5px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .flag-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .process-step-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--accent-color);
            margin-bottom: 15px;
        }

        /* Grid Layouts */
        .about-cards-container,
        .services-cards-container,
        .country-cards-container,
        .process-steps-container,
        .gallery-grid {
            display: grid;
            gap: 30px;
        }
        
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
            align-items: flex-start;
        }

        @media (min-width: 768px) {
            .contact-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        .about-cards-container,
        .services-cards-container,
        .process-steps-container {
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        }

        .country-cards-container {
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        }

        .gallery-grid {
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        }

        .gallery-item {
            overflow: hidden;
            border-radius: 8px;
            box-shadow: var(--box-shadow);
        }

        .gallery-image {
            width: 100%;
            height: 300px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .gallery-item:hover .gallery-image {
            transform: scale(1.05);
        }

        /* Contact Section */
        .contact-info-title {
            font-size: 1.8rem;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        .contact-text {
            font-size: 1rem;
            color: var(--secondary-text-color);
            margin-bottom: 20px;
            line-height: 1.8;
        }

        .contact-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .contact-list li {
            margin-bottom: 10px;
            font-size: 1rem;
            color: var(--secondary-text-color);
        }

        .contact-list-label {
            font-weight: 600;
            color: var(--primary-color);
            margin-right: 5px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--primary-color);
        }

        .form-input,
        .form-textarea {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            color: var(--text-color-dark);
            box-sizing: border-box; 
        }

        .form-textarea {
            resize: vertical;
        }

        .form-input:focus,
        .form-textarea:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 2px rgba(19, 78, 74, 0.25);
        }

        /* Map section styling */
        .contact-map-section {
            background-color: var(--text-color-light);
            padding: 40px 0 80px;
        }

        .map-container {
            width: 100%;
            height: 450px;
            margin: 0 auto;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--box-shadow);
        }
        
        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* Footer */
        .main-footer {
            background: linear-gradient(rgba(19, 78, 74, 0.9), rgba(19, 78, 74, 0.9)), url('img.jpg') no-repeat center center/cover;
            color: var(--text-color-light);
            padding: 60px 0 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
            text-align: left;
            margin-bottom: 40px;
        }

        @media (min-width: 768px) {
            .footer-content {
                grid-template-columns: 1fr 1fr 1fr; /* Three columns on larger screens */
            }
        }
        
        @media (max-width: 768px) {
            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
        }

        .footer-logo-container .logo {
            height: 80px;
            margin-bottom: 20px;
            display: inline-block;
        }

        .footer-description {
            font-size: 0.9rem;
            color: #bbb;
            margin-bottom: 20px;
        }

        .footer-contact-info {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-contact-info li {
            margin-bottom: 10px;
            font-size: 0.9rem;
        }

        .footer-contact-info li strong {
            color: var(--accent-color);
            margin-right: 5px;
        }
        
        .footer-nav {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }
        
        @media (max-width: 768px) {
            .footer-nav {
                align-items: center;
            }
        }

        .footer-nav-title,
        .footer-contact-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--text-color-light);
        }

        .footer-link {
            color: var(--text-color-light);
            text-decoration: none;
            margin-bottom: 10px;
            font-weight: 400;
            transition: color 0.3s ease;
        }

        .footer-link:hover {
            color: var(--accent-color);
        }

        .footer-copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }
        
        .footer-text {
            font-size: 0.9rem;
            color: #bbb;
            line-height: 1.5;
        }