/* Banner Section */
        .banner-section {
            position: relative;
            height: 400px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .banner-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
        }

        .banner-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
            z-index: 2;
        }

        .banner-content {
            position: relative;
            z-index: 3;
            text-align: center;
            color: var(--white);
            padding: 0 20px;
        }

        .banner-title {
            font-size: 48px;
            font-weight: 800;
            margin-bottom: 20px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .banner-subtitle {
            font-size: 20px;
            font-weight: 400;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Main Content Section */
        .main-content {
            padding: 80px 20px;
            background-color: var(--white);
        }

        .content-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            font-size: 36px;
            font-weight: 800;
            margin-bottom: 20px;
            background: var(--secondary-color);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-subtitle {
            text-align: center;
            font-size: 18px;
            color: var(--text-light);
            margin-bottom: 50px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        /* --- NEW CSS for Rearranged Contact Page Layout --- */

        /* Card Styling */
        .contact-card {
            background: var(--white);
            border-radius: 16px;
            box-shadow: var(--card-shadow);
            padding: 40px;
            margin-bottom: 40px; /* Space between stacked elements */
            width: 100%;
        }

        .contact-card h2 {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 25px;
            color: var(--text-dark);
            border-bottom: 2px solid var(--secondary-color);
            padding-bottom: 15px;
        }
        
        /* Grid for side-by-side cards */
        .cards-grid {
            display: flex;
            gap: 30px;
        }
        .cards-grid .contact-card {
            margin-bottom: 0; /* Remove bottom margin for cards inside the grid */
        }

        /* Map Card (Full Width, on top) */
        .map-card {
            padding: 0;
            overflow: hidden;
        }
        .map-card h2 {
            padding: 40px 40px 15px 40px;
        }
        .map-card iframe {
            width: 100%;
            height: 450px;
            border: 0;
            display: block;
        }

        /* Address Card with Icons */
        .info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
            color: var(--text-light);
            line-height: 1.7;
        }
        .info-item:last-child {
            margin-bottom: 0;
        }
        .info-icon {
            flex-shrink: 0;
            width: 24px;
            height: 24px;
            margin-right: 15px;
            margin-top: 2px;
            color: var(--primary-color);
        }
        .info-text strong {
            display: block;
            color: var(--text-dark);
            margin-bottom: 4px;
        }
        .info-text a {
            color: var(--text-light);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .info-text a:hover {
            color: var(--primary-color);
        }

        /* Form Styling */
        .contact-form .form-group {
            margin-bottom: 25px;
        }

        .contact-form label {
            display: block;
            margin-bottom: 10px;
            font-weight: 600;
            color: var(--text-dark);
            font-size: 16px;
        }

        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 15px;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            font-size: 16px;
            font-family: inherit;
            transition: all 0.3s ease;
        }

        .contact-form input:focus,
        .contact-form textarea:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(36, 92, 61, 0.1);
        }
        
        .contact-form textarea {
            resize: vertical;
            min-height: 150px;
        }

        .submit-btn {
            display: inline-block;
            width: 100%;
            padding: 18px;
            background: var(--secondary-color);
            color: var(--white);
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 18px;
            border: none;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(36, 92, 61, 0.4);
        }

         /* Responsive Design */
        @media (max-width: 768px) {
            .nav-menu-wrapper {
                display: none;
            }

            .nav-menu {
                position: fixed;
                left: -100%;
                top: 70px;
                flex-direction: column;
                background-color: var(--white);
                width: 100%;
                text-align: center;
                transition: 0.3s;
                box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
                padding: 20px 0;
            }

            .nav-menu.active {
                left: 0;
            }

            .mobile-menu-toggle {
                display: flex;
            }

            .banner-title {
                font-size: 32px;
            }

            .banner-subtitle {
                font-size: 16px;
            }

            .section-title {
                font-size: 28px;
            }

            .contact-card {
                padding: 25px;
            }
            
            /* Stack the grid on mobile */
            .cards-grid {
                flex-direction: column;
            }

            .map-card iframe {
                height: 300px;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .footer-bottom {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }
        }

        @media (max-width: 576px) {
            .banner-title {
                font-size: 24px;
            }

            .section-title {
                font-size: 24px;
            }
        }