
        :root {
            --primary-color: #2a5d2a;
            --secondary-color: #5a7c5a;
            --accent-color: #ffc40c;
            --dark-color: #2c3e50;
            --light-color: #f8f9fa;
            --text-color: #333;
            --border-radius: 12px;
            --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            --transition: all 0.4s ease;
        }


        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: var(--light-color);
            color: var(--text-color);
            line-height: 1.6;
            
            /* display: flex;
            justify-content: center;
            align-items: center;*/
            min-height: 100vh;
        }
        .main-wrapper{
            display: flex;
            justify-content: center;
            padding: 40px 20px;
        }

        .agency-component {
            max-width: 1200px;
            width: 100%;
        }

        .agency-row {
            display: flex;
            margin-bottom: 80px;
            align-items: center;
            min-height: 400px;
            opacity: 0;
            transform: translateY(50px);
            transition: opacity 1s ease, transform 1s ease;
        }

        .agency-row.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .agency-image, .agency-content {
            flex: 1;
            padding: 20px;
        }

        .agency-image {
            position: relative;
            overflow: hidden;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            transform: translateX(-50px);
            opacity: 0;
            transition: transform 1s ease, opacity 1s ease;
            padding: 10px;
        }

        .agency-content {
            padding: 40px;
            transform: translateX(50px);
            opacity: 0;
            transition: transform 1s ease, opacity 1s ease;
        }

        .agency-row.visible .agency-image,
        .agency-row.visible .agency-content {
            transform: translateX(0);
            opacity: 1;
        }

        .agency-row.reverse {
            flex-direction: row-reverse;
        }

        .agency-row.reverse .agency-image {
            transform: translateX(50px);
        }

        .agency-row.reverse .agency-content {
            transform: translateX(-50px);
        }

        .agency-row.reverse.visible .agency-image,
        .agency-row.reverse.visible .agency-content {
            transform: translateX(0);
        }

        .image-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: var(--border-radius);
            height: 100%;
            /* min-height: 300px; */
        }

        .image-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .agency-image:hover img {
            transform: scale(1.05);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
        }

        .agency-heading {
            font-size: 2.2rem;
            margin-bottom: 20px;
            color: var(--primary-color);
            position: relative;
            padding-bottom: 15px;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
        }

        .agency-row.visible .agency-heading {
            opacity: 1;
            transform: translateY(0);
        }

        .agency-heading::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 4px;
            background: var(--accent-color);
            border-radius: 2px;
        }

        .agency-text {
            margin-bottom: 25px;
            font-size: 1.1rem;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.8s ease 0.4s, transform 0.8s ease 0.4s;
        }

        .agency-row.visible .agency-text {
            opacity: 1;
            transform: translateY(0);
        }

        .agency-button {
            display: inline-block;
            padding: 14px 32px;
            background: transparent;
            color: var(--primary-color);
            border: 2px solid var(--primary-color);
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            cursor: pointer;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.8s ease 0.6s, transform 0.8s ease 0.6s, background 0.3s ease, color 0.3s ease;
        }

        .agency-row.visible .agency-button {
            opacity: 1;
            transform: translateY(0);
        }

        .agency-button:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(74, 108, 247, 0.25);
        }


        /* Responsive styles */
        @media (max-width: 768px) {
            .agency-row, .agency-row.reverse {
                flex-direction: column;
                margin-bottom: 60px;
            }
            
            .agency-image, .agency-content {
                width: 100%;
                padding: 10px;
            }
            
            .agency-content {
                padding: 25px 15px;
            }
            
            .agency-image {
                margin-bottom: 20px;
                transform: translateY(50px) !important;
            }
            
            .agency-content {
                transform: translateY(50px) !important;
            }
            
            .agency-row.visible .agency-image,
            .agency-row.visible .agency-content {
                transform: translateY(0) !important;
            }
            
            .agency-heading {
                font-size: 1.8rem;
            }
        }

        @media (max-width: 480px) {
            .agency-heading {
                font-size: 1.6rem;
            }
            
            .agency-button {
                padding: 12px 28px;
            }
        }

        /* ===== Page Header ===== */
.page-header {
    text-align: center;
    padding: 40px 15px;
    background: #f9f9f9;
    border-bottom: 1px solid #e0e0e0;
}

.page-header .page-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2a5d2a; /* primary color */
    margin-bottom: 12px;
    line-height: 1.3;
}

/* ===== Breadcrumbs ===== */
.breadcrumb {
    font-size: 0.9rem;
    color: #666;
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
}

.breadcrumb a {
    color: #2a5d2a;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #1e441e; /* darker green on hover */
}

.breadcrumb span {
    color: #444;
    font-weight: 600;
}

/* Add separator automatically */
.breadcrumb a::after {
    content: "›";
    margin: 0 6px;
    color: #999;
}

.breadcrumb a:last-of-type::after {
    content: "";
}

/* ===== Larger screens ===== */
@media (min-width: 600px) {
    .page-header {
        padding: 60px 20px;
    }

    .page-header .page-title {
        font-size: 2.2rem;
    }

    .breadcrumb {
        font-size: 1rem;
    }
}

@media (min-width: 992px) {
    .page-header .page-title {
        font-size: 2.8rem;
    }

    .breadcrumb {
        font-size: 1.05rem;
        gap: 10px;
    }
}
