﻿
body {
    font-family: 'Poppins Regular';
    margin: 0;
    padding: 0;
    background-color: #EEF2F6;
    color: #333;
}

main .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
    background-color: #FED7AA;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-top: 100px;
}

/* Form Section */
.form-section {
    flex: 1;
    padding: 20px;
    min-width: 300px;
}

    .form-section h1 {
        font-size: 2em;
        margin-bottom: 10px;
        font-family: 'PP Hatton bold';
    }

    .form-section p {
        font-size: 1.1em;
        margin-bottom: 20px;
        color: #666;
    }

.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

    .form-group label {
        font-weight: bold;
        margin-bottom: 5px;
    }

    .form-group input,
    .form-group select {
        padding: 10px;
        font-size: 1em;
        border: 1px solid #ccc;
        border-radius: 5px;
    }

.inline-group {
    display: flex;
    gap: 10px;
}

    .inline-group div {
        flex: 1;
    }

.btn-submit {
    padding: 12px 20px;
    font-size: 1.1em;
    color: #fff;
    background-color: #ff7525;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .btn-submit:hover {
        background-color: #ff7525;
    }

.image-section {
    flex: 1;
    padding: 20px;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .image-section img {
        max-width: 100%;
        border-radius: 10px;
        height: 600px;
        box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.2);
    }

.contact-section {
    text-align: center;
    margin-bottom: 40px;
}

    .contact-section h2 {
        font-family: 'PP Hatton medium';
        font-weight: bold;
        color: black;
    }


    .contact-section .contact-card {
        background-color: black;
        color: white;
        border-radius: 8px;
        padding: 30px;
        text-align: center;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        height: 250px;
    }

        .contact-section .contact-card .icon {
            font-size: 40px;
            color: #ff7525;
            margin-bottom: 20px;
        }

        .contact-section .contact-card h4 {
            font-weight: bold;
            color: #ff7525;
        }

        .contact-section .contact-card p {
            margin: 0;
            color: #ddd;
        }

@media (max-width: 768px) {
    .contact-section .contact-card {
        margin-bottom: 20px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        padding: 10px;
    }
}

