* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }

        body {
            background-color: #f5f7fa;
            color: #333;
            line-height: 1.6;
        }

        .about-us-section {
            padding: 80px 20px;
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .about-us-section h1 {
            font-size: 2.5rem;
            color: #1a3c6e;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .about-us-section p {
            font-size: 1.1rem;
            color: #555;
            margin-bottom: 20px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .mission-vision {
            display: flex;
            justify-content: space-between;
            gap: 20px;
            margin-top: 40px;
            flex-wrap: wrap;
        }

        .mission-vision div {
            flex: 1;
            min-width: 300px;
            padding: 20px;
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .mission-vision div:hover {
            transform: translateY(-5px);
        }

        .mission-vision h2 {
            font-size: 1.8rem;
            color: #1a3c6e;
            margin-bottom: 15px;
        }

        .mission-vision p {
            font-size: 1rem;
            color: #666;
        }

        .team-highlight {
            margin-top: 40px;
        }

        .team-highlight h2 {
            font-size: 2rem;
            color: #1a3c6e;
            margin-bottom: 20px;
        }

        .team-highlight p {
            font-size: 1.1rem;
            color: #555;
        }

        @media (max-width: 768px) {
            .about-us-section h1 {
                font-size: 2rem;
            }

            .mission-vision {
                flex-direction: column;
                align-items: center;
            }

            .mission-vision div {
                min-width: 100%;
            }
        }