   <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

 @font-face {
            font-family: Mont-Heavy;
            src: url(Assets/Mont-Heavy.otf);
        }

        @font-face {
            font-family: Mont-Light;
            src: url(Assets/Mont-Light.otf);
        }

        @font-face {
            font-family: DefaultSans;
            src: url(Assets/DefaultSans.ttf);
        }


        .contact-section {
            position: relative;
            padding: 60px 5%;
            min-height: 600px;
            background: 
                linear-gradient(rgba(26, 95, 70, 0.85), rgba(26, 95, 70, 0.85)),
                url(images/greenbg.webp);
            background-size: cover;
            background-position: center;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 50px;
            flex-wrap: wrap;
        }

        .contact-content {
            flex: 1;
            max-width: 550px;
            min-width: 300px;
        }

        .contact-content h2 {
            font-family: Mont-Heavy;
            font-size: 2.8rem;
            color: white;
            line-height: 1.2;
            margin-bottom: 20px;
            font-weight: 400;
        }

        .contact-content .subtitle {
            color: white;
            font-family: DefaultSans;
            font-size: 1rem;
            margin-bottom: 25px;
        }

        .contact-content .subtitle a {
            color: #4dd0e1;
            text-decoration: underline;
        }

        .contact-content .subtitle a:hover {
            color: #80deea;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .form-row {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .form-row input {
            flex: 1;
            min-width: 120px;
        }

        .contact-form input,
        .contact-form textarea {
            padding: 14px 16px;
            border: none;
            border-radius: 4px;
            font-family: Arial, sans-serif;
            font-size: 0.95rem;
            color: #333;
            background: white;
            outline: none;
        }

        .contact-form input::placeholder,
        .contact-form textarea::placeholder {
            color: #666;
        }

        .contact-form textarea {
            resize: vertical;
            min-height: 100px;
        }

        .contact-form button {
            align-self: flex-start;
            padding: 14px 60px;
            background: linear-gradient(135deg, #00a0b0, #008b9a);
            color: white;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-family: DefaultSans;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
            margin-top: 10px;
        }

        .contact-form button:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(0, 160, 176, 0.4);
        }

        .map-container {
            flex: 1;
            max-width: 500px;
            min-width: 300px;
            height: 450px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
background-image: url(images/mechanic.webp);
background-size: cover;
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* Mobile Responsive */
        @media (max-width: 900px) {
            .contact-section {
                padding: 40px 5%;
                gap: 40px;
            }

            .contact-content h2 {
                font-size: 2.2rem;
            }

            .map-container {
                height: 350px;
            }
        }

        @media (max-width: 600px) {
            .contact-section {
                padding: 30px 4%;
            }

            .contact-content h2 {
                font-size: 1.8rem;
            }

            .contact-content .subtitle {
                font-size: 0.9rem;
            }

            .form-row {
                flex-direction: column;
            }

            .form-row input {
                width: 100%;
            }

            .contact-form button {
                width: 100%;
                text-align: center;
            }

            .map-container {
                height: 300px;
                min-width: 100%;
            }
        }
    </style>