﻿* {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
       font-family: "League Spartan", sans-serif;
    }

    
    .banner-section {
        position: relative;
        width: 100%;
        min-height: 100vh; 
        background-color: #000; 
        display: flex;
        align-items: center;
        justify-content: flex-end; 
        padding-right: 8%; 
        overflow: hidden;
    }

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

    .banner-image-container img {
        width: 100%;
        height: 100%;
        object-fit: cover; 
    }

    
    .form-wrapper {
        position: relative;
        z-index: 2; 
        background-color: #ffffff;
        width: 90%;
        max-width: 600px; /*from widht */
        padding: 40px;
        border-radius: 8px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    
    .form-wrapper h2 {
        font-size: 22px;
        font-weight: 400;
        color: #1a1a1a;
        margin-bottom: 12px;
    }

    .form-wrapper p {
        font-size: 16px;
        color: #4a4a4a;
        margin-bottom: 25px;
    }

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

    .contact-form input, 
    .contact-form select {
        width: 100%;
        padding: 14px 16px;
        font-size: 15px;
        color: #333;
        border: 1px solid #d1d5db;
        border-radius: 6px;
        outline: none;
        transition: border-color 0.2s;
        appearance: auto; 
    }

    .contact-form input:focus, 
    .contact-form select:focus {
        border-color: #333;
    }

    .contact-form input::placeholder {
        color: #6b7280;
    }

    .contact-form select {
        color: #333;
        cursor: pointer;
        background-color: white;
    }
    
    .contact-form select:invalid {
        color: #6b7280; 
    }

    
    .submit-btn {
        margin-top: 10px;
        padding: 12px 40px;
        background-color: #2b2b2b;
        color: #ffffff;
        border: none;
        border-radius: 30px; 
        font-size: 16px;
        font-weight: 500;
        cursor: pointer;
        align-self: center; 
        transition: background-color 0.3s;
    }

    .submit-btn:hover {
        background-color: #000000;
    }

    
    @media (max-width: 768px) {
        .banner-section {
            justify-content: center; 
            padding-right: 0; 
            padding: 20px; 
        }

        .form-wrapper {
            padding: 25px 20px;
            max-width: 500px;
        }

        .form-wrapper h2 {
            font-size: 18px;
        }

        .form-wrapper p {
            font-size: 14px;
        }

        .contact-form input, 
        .contact-form select {
            padding: 12px;
        }
    }