    :root {
    --primary-color: #006c3b; /* AMIU Green */
    --accent-color: #f39c12; /* Orange/Yellow */
    --text-color: #333;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --font-main: 'Titillium Web', sans-serif;
}

body {
        font-family: var(--font-main);
        color: var(--text-color);
        background-color: var(--bg-light);
        line-height: 1.6;
    }

    /* Animations */
    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .fade-in {
        animation: fadeIn 0.6s ease-out forwards;
    }

    .hover-lift {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .hover-lift:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    /* Typography */
    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        font-weight: 700;
        color: var(--primary-color);
    }

    /* Utilities */
    .bg-primary-custom {
        background-color: var(--primary-color);
        color: var(--white);
    }

    .text-primary-custom {
        color: var(--primary-color);
    }

    .btn-primary-custom {
        background-color: var(--primary-color);
        border-color: var(--primary-color);
        color: var(--white);
        transition: all 0.3s ease;
    }

    .btn-primary-custom:hover {
        background-color: #00522c;
        border-color: #00522c;
        color: var(--white);
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0, 108, 59, 0.3);
    }

    .btn-cta {
        background: linear-gradient(45deg, var(--accent-color), #ffad5c);
        color: var(--text-color); /* Dark text for better contrast on orange */
        font-weight: 700;
        border: none;
        padding: 12px 30px;
        border-radius: 50px;
        /* Pill shape for modern feel */
        box-shadow: 0 4px 15px rgba(240, 142, 51, 0.4);
        transition: all 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .btn-cta:hover {
        background: linear-gradient(45deg, #d6761f, var(--accent-color));
        color: var(--text-color);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(240, 142, 51, 0.6);
    }

    /* Accessibility: Focus states */
    :focus-visible {
        outline: 3px solid var(--accent-color);
        outline-offset: 2px;
    }

    .skip-link {
        position: absolute;
        top: -40px;
        left: 0;
        background: var(--primary-color);
        color: white;
        padding: 8px;
        z-index: 2000;
        transition: top 0.3s;
        text-decoration: none;
        font-weight: bold;
    }

    .skip-link:focus {
        top: 0;
    }

    /* Improve contrast for muted text */
    .text-muted {
        color: #595c5f !important; /* Darker grey for better contrast (approx 7:1 on white) */
    }

    /* Navbar Styling */
    .navbar {
        padding: 1rem 0;
        transition: padding 0.3s ease;
    }

    .navbar-brand h1 {
        font-size: 1.25rem;
    }

    .nav-link {
        color: var(--text-color) !important;
        font-weight: 600;
        text-transform: uppercase;
        font-size: 1rem;
        padding: 0.5rem 1rem !important;
        transition: color 0.3s ease, background-color 0.3s ease;
        border-radius: 4px;
    }

    .nav-link:hover,
    .nav-link.active {
        color: var(--primary-color) !important;
        background-color: rgba(0, 108, 59, 0.05);
    }

    /* Mobile Menu Styling */
    @media (max-width: 991.98px) {
        .navbar-collapse {
            background-color: white;
            padding: 1rem;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            margin-top: 10px;
        }

        .nav-item {
            border-bottom: 1px solid #f0f0f0;
        }
        
        .nav-item:last-child {
            border-bottom: none;
        }

        .nav-link {
            padding: 10px 0 !important;
        }
    }

    /* Header */
    .navbar-brand img {
        height: 50px;
    }

    .top-bar {
        background-color: #f0f0f0;
        font-size: 0.9rem;
        padding: 5px 0;
    }

    /* Footer */
    footer {
        background-color: #2c3e50;
        color: white;
        padding: 40px 0;
    }

    footer a {
        color: #ecf0f1;
        text-decoration: none;
    }

    footer a:hover {
        color: var(--accent-color);
    }

    /* Cards */
    .card {
        border: none;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s;
    }

    .card:hover {
        transform: translateY(-5px);
    }

    /* Service Icons */
    .service-icon {
        font-size: 3rem;
        color: var(--primary-color);
        margin-bottom: 15px;
    }

    /* Map Placeholder */
    .map-placeholder {
        background-color: #e9ecef;
        height: 400px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        position: relative;
        background-image: url('https://maps.googleapis.com/maps/api/staticmap?center=41.1171,16.8719&zoom=13&size=600x400&maptype=roadmap&key=YOUR_API_KEY_HERE');
        /* Placeholder URL */
        background-size: cover;
    }

    .map-overlay {
        background: rgba(255, 255, 255, 0.9);
        padding: 20px;
        border-radius: 8px;
        text-align: center;
    }

    /* Mobile Dashboard */
    .dashboard-header {
        background-color: var(--primary-color);
        color: white;
        padding: 20px;
        border-radius: 0 0 20px 20px;
    }

    .step-indicator {
        display: flex;
        justify-content: space-between;
        margin-bottom: 20px;
    }

    .step {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background-color: #ddd;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
    }

    .step.active {
        background-color: var(--primary-color);
        color: white;
    }

    .thumb-zone-btn {
        height: 60px;
        font-size: 1.2rem;
    }