    :root {
        --primary: #388E5A;
        --primary-dark: #2a6d45;
        --secondary: #C99200;
        --secondary-dark: #a87a00;
        --accent: #4A6FA5;
        --light-bg: #f8f9fa;
        --dark-text: #212529;
        --light-text: #6c757d;
        --border-radius: 12px;
        --transition: all 0.3s ease;
        --white-color: #ffffff;
        --black-color: #212529;
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        line-height: 1.6;
        color: var(--dark-text);
        background-color: #fff;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
    }

    /* Breadcrumb Section */
    .breadcrumb_wrapper {
        background: linear-gradient(rgba(0, 0, 0, .57), rgba(0, 0, 0, .27)), url('../images/RR-About-Us.jpg');
        background-size: cover;
        background-repeat: no-repeat;
        padding: 120px 0;
        background-position: center;
    }

    .breadcrumb_wrapper__content h2 {
        text-align: center;
        font-size: 54px;
        color: var(--white-color);
        text-transform: capitalize;
        margin-bottom: 15px;
    }

    .breadcrumb_menu {
        text-align: center;
    }

    .breadcrumb_menu a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        transition: var(--transition);
    }

    .breadcrumb_menu a:hover {
        color: white;
    }

    .breadcrumb_menu span {
        color: rgba(255, 255, 255, 0.6);
        margin: 0 8px;
    }

    .breadcrumb_menu p {
        display: inline;
        margin: 0;
        color: white;
        font-weight: 500;
    }

    /* About Section */
    .about_new {
        padding: 30px 0;
    }

    .about_new__content h3 {
        font-size: 36px;
        font-weight: 700;
        color: var(--primary);
        margin-bottom: 30px;
        position: relative;
        padding-bottom: 15px;
    }

    .about_new__content h3::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 80px;
        height: 4px;
        background: var(--secondary);
        border-radius: 2px;
    }

    .about_new__content p {
        margin-top: 1rem;
        font-size: 18px;
        color: var(--dark-text);
        line-height: 1.8;
        margin-bottom: 1.5rem;
    }

    .about_new__content ul {
        padding-left: 0;
        margin: 1.5rem 0;
        list-style: none;
    }

    .about_new__content li {
        font-size: 18px;
        color: var(--dark-text);
        line-height: 1.7;
        position: relative;
        padding-left: 30px;
        margin-bottom: 1rem;
    }

    .about_new__content li::before {
        content: "•";
        position: absolute;
        left: 0;
        top: 0;
        font-size: 24px;
        color: var(--secondary);
        line-height: 1;
    }

    /* Highlight Box */
    .highlight-box {
        background: linear-gradient(135deg, rgba(56, 142, 90, 0.05) 0%, rgba(201, 146, 0, 0.05) 100%);
        border-left: 4px solid var(--secondary);
        padding: 25px;
        margin: 30px 0;
        border-radius: 0 var(--border-radius) var(--border-radius) 0;
    }

  

    /* Mission Vision Section */
    .mission-vision {
        padding: 22px 0;
       
    }

    .row {
        display: flex;
        flex-wrap: wrap;
        margin: 0 -15px;
    }

    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
        padding: 0 15px;
    }

    .mb-4 {
        margin-bottom: 1.5rem;
    }

    .mv-card {
        background: white;
        border-radius: var(--border-radius);
        padding: 30px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        height: 100%;
        transition: var(--transition);
        border-top: 4px solid var(--primary);
    }

    .mv-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    }

    .mv-card h4 {
        font-size: 22px;
        font-weight: 700;
        color: var(--primary);
        margin-bottom: 15px;
    }

    .mv-card p {
        color: var(--light-text);
        line-height: 1.7;
        margin: 0;
    }

    /* Responsive Design */
    @media (max-width: 992px) {
        .breadcrumb_wrapper__content h2 {
            font-size: 42px;
        }
        
        .about_new__content h3 {
            font-size: 32px;
        }
    }

    @media (max-width: 768px) {
        .breadcrumb_wrapper {
            padding: 75px 0;
        }

        .breadcrumb_wrapper__content h2 {
            font-size: 32px;
        }

        .about_new {
            padding: 10px 0;
        }

        .about_new__content h3 {
            font-size: 28px;
            margin-bottom: 20px;
        }

        .about_new__content p,
        .about_new__content li {
            font-size: 16px;
            line-height: 1.6;
        }

        .col-md-6 {
            flex: 0 0 100%;
            max-width: 100%;
        }

        .mv-card {
            margin-bottom: 20px;
            padding: 25px;
        }

        .mv-card h4 {
            font-size: 20px;
        }

        .highlight-box {
            padding: 20px;
            margin: 20px 0;
        }

        .highlight-box p {
            font-size: 18px;
        }
    }

    @media (max-width: 576px) {
        .breadcrumb_wrapper {
            padding: 60px 0;
        }

        .breadcrumb_wrapper__content h2 {
            font-size: 28px;
        }

        .about_new__content h3 {
            font-size: 24px;
        }

        .about_new__content p,
        .about_new__content li {
            font-size: 15px;
        }

        .mv-card {
            padding: 20px;
        }

        .mv-card h4 {
            font-size: 18px;
        }

        .highlight-box p {
            font-size: 16px;
        }
    }
