        /* Custom Styles for Contact Page */


        .contact-section {
            /* More generous spacing top and bottom */
            padding: 80px 0;
        }

        /* --- Typography --- */

        h1 {
            color: #343a40;
            /* Dark text for headings */
            font-weight: 700;
            font-size: 3em;
        }

        h3.card-title {
            color: #007bff;
            /* Primary blue color for card titles */
            border-bottom: 2px solid #e9ecef;
            padding-bottom: 10px;
            margin-bottom: 20px !important;
            font-size: 2em;
        }

        h5 {
            color: #495057;
            /* Slightly darker text for detail headings */
            font-weight: 600;
            font-size: 1.2em;
        }

        /* --- Card Styling --- */

        .card {
            border: none;
            border-radius: 12px;
            /* Rounded corners for a softer look */
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .card:hover {
            /* Slight lift effect on hover for engagement */
            transform: translateY(-5px);
            box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1) !important;
        }

        .card-body {
            padding: 30px;
        }

        /* --- Form and Input Styling --- */

        .form-control {
            border-radius: 8px;
            /* Rounded input fields */
            border: 1px solid #ced4da;
            padding: 10px 15px;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
        }

        .form-control:focus {
            border-color: #007bff;
            box-shadow: 0 0 0 0.25rem rgba(0, 123, 255, 0.25);
            /* Standard Bootstrap focus glow */
        }

        .btn-primary {
            background-color: #007bff;
            border-color: #007bff;
            font-weight: 600;
            border-radius: 8px;
            padding: 10px 0;
            transition: background-color 0.3s ease, border-color 0.3s ease;
        }

        .btn-primary:hover {
            background-color: #0056b3;
            border-color: #004085;
        }

        /* --- Details List Styling --- */

        .list-unstyled li {
            padding: 5px 0;
            font-size: 1.05rem;
            color: #555;
        }

        /* --- Map Placeholder Styling --- */

        .map-placeholder {
            height: 400px;
            border-radius: 12px;
            overflow: hidden;
            /* Ensures map embed respects border-radius */
            border: 1px solid #e9ecef;
        }

        .map-placeholder iframe {
            width: 100%;
            height: 100%;
            border: 0;
        }


        .contact-section {
            /* Increased top padding to clear a potential fixed header */
            padding-top: 100px;
            /* Adjust this value based on your header's height */
            padding-bottom: 80px;
        }

        /* Optional: Adjust padding for smaller screens if your header is smaller */
        @media (max-width: 768px) {
            .contact-section {
                padding-top: 80px;
            }
        }