
        body {
            background-color: #f8f9fa;
            font-family: 'Inter', sans-serif;  /* More modern font */
        }
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        .section-title h2 {
            font-weight: 700;
            color: #2c3e50;
            font-size: 2.5rem;
            margin-bottom: 15px;
        }
        .section-title p {
            color: #666;
            font-size: 1.1rem;
            max-width: 60%;
            margin: 0 auto;
        }
        .mission-vision-section {
            background-color: #ffffff;
            padding: 60px 0;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            margin-bottom: 60px;
        }
        .mission-vision-section h3 {
            color: #3498db;
            font-size: 1.8rem;
            margin-bottom: 20px;
            font-weight: 600;
        }
        .mission-vision-section p {
            color: #555;
            line-height: 1.8;
            font-size: 1.1rem;
        }
        .team-section {
            padding-bottom: 60px;
        }
        .team-member {
            text-align: center;
            margin-bottom: 40px;
        }
        .team-member img {
            width: 180px;
            height: 180px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 20px;
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
            transition: transform 0.2s ease-in-out;
        }
        .team-member img:hover {
            transform: translateY(-5px);
        }
        .team-member h4 {
            color: #2c3e50;
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 10px;
        }
        .team-member p {
            color: #7f8c8d;
            font-size: 1.1rem;
        }
        .contact-us-section {
            background-color: #ffffff;
            padding: 60px;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            margin-top: 60px;
        }
        .contact-us-section h3 {
            color: #2c3e50;
            font-size: 2rem;
            font-weight: 600;
            margin-bottom: 30px;
            text-align: center;
        }
        .contact-us-section p {
            color: #555;
            font-size: 1.1rem;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .contact-us-section p i {
            margin-right: 15px;
            font-size: 1.5rem;
            color: #3498db;
            width: 30px;
            text-align: center;
        }
        .feature-box {
            background-color: #e9ecef;
            padding: 30px;
            border-radius: 10px;
            margin-bottom: 30px;
            transition: background-color 0.3s ease;
        }

        .feature-box:hover {
            background-color: #ced4da;
        }

        .feature-box h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 15px;
        }

        .feature-box p {
            font-size: 1.1rem;
            color: #666;
            line-height: 1.7;
        }
        .value-box {
            background-color: #f0f4f8;
            padding: 30px;
            border-radius: 10px;
            margin-bottom: 30px;
             transition: background-color 0.3s ease;
        }
        .value-box:hover {
             background-color: #e0e0e0;
        }

        .value-box h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 15px;
        }

        .value-box p {
            font-size: 1.1rem;
            color: #666;
            line-height: 1.7;
        }
        .why-choose-box {
            background-color: #f9f9f9;
            padding: 30px;
            border-radius: 10px;
            margin-bottom: 30px;
            transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
        }

        .why-choose-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
        }

        .why-choose-box h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 15px;
        }

        .why-choose-box p {
            font-size: 1.1rem;
            color: #666;
            line-height: 1.7;
        }