body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    color: #222;
}

.main-content {
    padding-top: 100px;
}

.contact-container {
    text-align: center;
    padding: 140px 20px 60px;
}

.contact-container h1 {
    font-size: 3.5rem;
    color: #111;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 50px;
}

.contact-container p {
    font-size: 1.4rem;
    margin-bottom: 25px;
    color: #444;
    line-height: 1.6;
}

.contact-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1100px;
    margin: auto;
    gap: 100px;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.1);
}

/* Left Section: Contact Details */
.contact-details {
    text-align: left;
    flex: 1;
    max-width: 450px;
}

.contact-details h2 {
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #000000;
}

.contact-details p {
    font-size: 1.1rem;
    font-weight: 150rem;
    color: #000000;
    margin: 12px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-details i {
    color: #000000;
    font-size: 1.4rem;
}

.contact-form {
    flex: 2;
    border: none;
}

.input-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.input-field {
    width: 100%;
}

.input-field.half {
    width: calc(50% - 7.5px);
}

label {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.required {
    color: #ff2d20;
    font-weight: bold;
}

input, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    font-size: 1.1rem;
    background: #fff;
    color: #333;
    transition: border-color 0.3s ease-in-out;
    display: block;
    border-radius: 5px;
}

textarea {
    height: 115px;
    resize: vertical;
}

input:focus, textarea:focus {
    border-color: #ff2d20;
    background: #f5f5f5;
}

button {
    margin-top: 10px;
    background-color: #9c2620;
    color: white;
    padding: 16px 20px;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    width: 100%;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 5px;
    transition: 0.3s ease-in-out;
}

button:hover {
    background-color: #e0251c;
}

@media (max-width: 768px) {
    .contact-container {
        padding: 120px 15px 40px;
        text-align: center;
    }

    h1 {
        font-size: 2rem;
    }

    p {
        font-size: 1rem;
    }

    .contact-wrapper {
        flex-direction: column;
        padding: 15px;
        gap: 20px;
        align-items: center;
        text-align: center;
    }

    .contact-details {
        max-width: 100%;
        text-align: center;
    }

    .contact-details p {
        justify-content: center;
    }

    .map-container iframe {
        height: 200px;
    }

    .contact-form {
        width: 100%;
        max-width: 400px;
        text-align: center;
    }

    .input-row {
        flex-direction: column;
        display: flex;
        align-items: center;
    }

    .input-field {
        width: 100%;
        max-width: 350px;
    }

    .input-field.half {
        width: 100%;
    }

    textarea {
        width: 100%;
        max-width: 350px;
    }

    button {
        font-size: 1rem;
        padding: 12px 16px;
        width: 100%;
        max-width: 350px;
    }
}


