
        .hero-image {
            background-image: url('../images/about/background/huhuness.jpg'); /* Replace with your hero image */
            background-size: cover;
            background-position: center;
            height: 300px; /* Adjust as needed */
            display: flex;
            align-items: center;
            justify-content: center;
            color: white; /* Text color for contrast */
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Add a text shadow */
        }

        .hero-image h2 {
            font-size: 3rem;
            font-weight: bold;
        }

        .section-container {
            margin-top: 2rem;
            padding: 2rem;
            border: 1px solid #a05e2a; /* Brown border */
            border-radius: 10px;
            box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1); /* Add a subtle shadow */
        }

        .staff-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Responsive grid */
            grid-gap: 2rem;
        }

        .staff-card {
            text-align: center;
        }

        .staff-card img {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 1rem;
            border: 2px solid #a05e2a; /* Brown border */
        }

        .location-map {
            max-width: 100%;
            height: auto;
            border-radius: 5px;
            box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
        }
        .social-links a {
            display: inline-block;
            margin: 0.5rem 1rem;
            color: #3c261c;
            text-decoration: none;
            font-size: 1.5rem;
        }
        .social-links a:hover {
            text-decoration: underline;
        }