
        /* ========================================
        CSS STYLES FOR ABOUT US CONTENT
        ========================================
        */
        
        /* --- Base Styling for About Us Page --- */

        .body{
    height: 100%;
    width: 75%;
    position: relative;
    left: 24%;
    top: 55px;
  
}
        #about-us-content {
            max-width: 1200px;
            margin: 0 auto; /* Center the main content block */
            padding: 20px;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* A professional, modern font */
            line-height: 1.6;
            color: #333; 
        }

        section {
            padding: 30px 0;
            border-bottom: 1px solid #eee; /* Subtle separator between sections */
        }
        
        /* --- Hero Section --- */
        .hero-section {
            text-align: center;
            padding-top: 40px;
        }

        .hero-section h1 {
            font-size: 2rem;
            color: #0056b3; /* A professional blue */
            margin-bottom: 10px;
        }

        .hero-section .tagline {
            font-size: 1.5em;
            font-weight: 300;
            color: #555;
            margin-bottom: 30px;
        }

        /* --- Mission & Focus Grid Section --- */
        .mission-section h2 {
            text-align: center;
            margin-bottom: 40px;
            font-size: 2em;

        }

        .focus-grid {
            /* display: grid; */
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsive Grid */
            gap: 30px;
        }

        .focus-card {
            background: #f8f9fa; /* Light background for the cards */
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .focus-card:hover {
            transform: translateY(-5px); /* Lift card on hover */
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
        }

        .focus-card h3 {
            color: #0056b3;
            margin-top: 0;
            border-bottom: 1px solid #ddd;
            padding-bottom: 10px;
        }

         .lot {
            color: #0056b3;
            margin-top: 0;
            border-bottom: 1px solid #ddd;
            padding-bottom: 10px;
            display: flex;
            justify-content: center;
        }

        .focus-card ul {
            list-style: none;
            padding-left: 0;
        }

        .focus-card ul li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 20px;
        }

        .focus-card ul li::before {
            content: '✓'; /* Checkmark for key points */
            color: #28a745; /* Green for positive/success */
            position: absolute;
            left: 0;
            font-weight: bold;
        }

        /* --- Values Section --- */
        .values-section p {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 40px auto;
        }

       

        .value-item {
            flex-basis: 30%; /* Control the width of each value item */
        }

        .value-item h4 {
            color: #0056b3;
            font-size: 1.25em;
            margin-bottom: 10px;
        }

        /* --- CTA Section --- */
        .cta-section {
            text-align: center;
            background-color: #e9ecef;
            padding: 80px 20px;
            border-radius: 8px;
            margin-top: 40px;
            border-bottom: none; 
        }

        .cta-section h2 {
            color: #333;
            font-size: 2.5em;
        }

        .cta-button {
            display: inline-block;
            background-color: #ffc107; /* A vibrant accent color */
            color: #333;
            padding: 15px 30px;
            margin-top: 20px;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            letter-spacing: 1px;
            transition: background-color 0.3s, transform 0.2s;
            border: none;
        }

        .cta-button:hover {
            background-color: #e0a800;
            transform: translateY(-2px);
        }

        @media (min-width: 1025px) and (max-width: 1900px) {
            
            .values-list {
            display: flex;
            justify-content: space-around;
            gap: 20px;
            text-align: center;
        }}

        /* --- Responsiveness --- */
        @media (min-width: 766px) and (max-width: 1024px) {


    .body{
    height: 100%;
    width: 90%;
    position: relative;
    left: 5%;
    top: 55px;
}
.values-list {
  
    justify-content: space-around;
    gap: 20px;
    text-align: center;
}
}

@media (max-width: 900px) {

    .body{
    height: 100%;
    width: 90%;
    position: relative;
    left: 5%;
    top: 55px;
}

.values-list {
  
    justify-content: space-around;
    gap: 20px;
    text-align: center;
}
}