
    header {
        background-color: white;
    }

    .contact-main {
        max-width: 1100px;
        margin: 50px auto;
        padding: 20px;
    }

    .contact-title {
        color: #333; 
        margin-bottom: 30px;
        text-align: center;
        font-size: 36px;
    }

    .contact-container {
        display: flex;
        flex-direction: column;
        gap: 40px;
        max-width: 1000px; 
        margin: 0 auto;
    }

    .contact-card {
        background: white;
        padding: 40px;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    }

    .contact-card h3 {
        color: rgb(249, 100, 0); 
        font-size: 24px;
        margin-bottom: 20px;
        text-align: center;
    }

    .contact-form {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 15px;
        font-size: 16px;
        border-radius: 8px;
        border: 1px solid #ddd;
        width: 100%;
        box-sizing: border-box;
        background-color: #fbfbfb;
    }

    .contact-form textarea {
        resize: vertical;
    }

    .contact-form button {
        background-color: rgb(249, 100, 0);
        color: white;
        border: none;
        padding: 15px;
        border-radius: 8px;
        font-size: 18px;
        font-weight: bold;
        cursor: pointer;
        transition: 0.3s ease;
    }

    .contact-form button:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 15px rgba(249, 100, 0, 0.4);
    }

    .contact-info {
        text-align: center;
    }

    .contact-info p {
        margin: 15px 0;
        line-height: 1.8;
        color: #555;
        font-size: 16px;
    }

    .contact-map {
        width: 100%;       
        height: 450px;     
        border: none;
        border-radius: 12px;
        margin-top: 20px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    @media (max-width: 768px) {
        .contact-container {
            max-width: 100%; 
        }
        .contact-map {
            height: 300px;
        }
    }

    .contact-popup-overlay {
        display: none; 
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5); 
        justify-content: center;
        align-items: center;
        z-index: 9999;
    }

    .contact-popup-box {
        background: white;
        padding: 30px;
        border-radius: 10px;
        text-align: center;
        box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        width: 300px;
    }

    .contact-popup-box h3 {
        color: rgb(249, 100, 0);
        margin-bottom: 15px;
    }