<style>
        /* Custom styles to match your theme */
        :root {
            --primary-orange: #FF6600; /* Your brand orange */
            --dark-gray: #343a40;      /* Dark background color */
            --light-gray: #f8f9fa;     /* Light section background */
        }
        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--light-gray);
            line-height: 1.6;
        }
        .container {
            max-width: 1200px;
        }
        /* Custom focus and validation styles */
        input:focus, textarea:focus {
            border-color: var(--primary-orange) !important;
            box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.3);
            outline: none;
        }
        .form-input {
            width: 100%;
            padding: 1rem 1.5rem;
            border: 1px solid #dee2e6;
            border-radius: 0.5rem;
            transition: all 0.3s;
        }
        .form-input::placeholder {
            color: #adb5bd;
        }
        /* Stylish Button Hover Effect */
        .cta-btn {
            background-color: var(--primary-orange);
            color: white;
            transition: background-color 0.3s, transform 0.1s;
        }
        .cta-btn:hover {
            background-color: #e65c00; /* Slightly darker orange */
            transform: translateY(-1px);
            box-shadow: 0 4px 10px rgba(255, 102, 0, 0.4);
        }
        /* Custom Card Style for the Form */
        .form-card {
            background-color: white;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
            padding: 2.5rem;
            border-radius: 1rem;
        }
        /* Responsive Grid for map and form */
        @media (min-width: 1024px) {
            .contact-grid {
                grid-template-columns: 2fr 3fr; /* Map takes less space than the form */
            }
        }

        /* Success Message Styling */
        #success-message {
            position: fixed;
            top: 1.5rem;
            right: 1.5rem;
            background-color: #28a745; /* Green */
            color: white;
            padding: 1rem 1.5rem;
            border-radius: 0.5rem;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-20px);
            transition: opacity 0.5s, visibility 0.5s, transform 0.5s;
        }

        #success-message.visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
    </style>