.container .form {
    margin-top: 30px;
}

.form .input-box {
    width: 100%;
    margin-top: 20px;
}

.input-box label {
    color: #333;
}

.form .input-box input {
    position: relative;
    height: 50px;
    width: 100%;
    font-size: 1rem;
    color: #707070;
    outline: none;
    margin-top: 8px;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 0 15px;
}

.input-box input:focus {
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
}

.form .column {
    display: flex;
    column-gap: 15px;
}

.form :where(.gender-option, .gender) {
    display: flex;
    align-items: center;
    column-gap: 50px;
    flex-wrap: wrap;
}
.form .gender {
    column-gap: 5px;
}
.form .gender-box {
    margin-top: 20px;
}
.gender input {
    accent-color: #f95c19;
}

.gender label {
    color: #707070;
}
.gender-box h3 {
    color: #333;
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 8px;
}
.form :where(.gender input, .gender label) {
    cursor: pointer;
}

/* textarea */

#label-message {
    display: block;
    font-size: 16px;
    color: #555;
    margin-bottom: 8px;
}

#message {
    width: 100%;
    padding: 12px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    resize: vertical;
    box-sizing: border-box;
}

#message:focus {
    border-color: #f95c19;
    box-shadow: 0 0 4px #942c00;
}

/* form button */

.form button {
    height: 55px;
    width: 100%;
    color: #fff;
    font-size: 1rem;
    font-weight: 400;
    margin-top: 30px;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.2s ease;
    background-color: #f95c19;
}

.form button:hover {
    background-color: #ff4d00;
}

/* address */
.contact-section {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.form-container,
.address-container {
    flex: 1 1 calc(50% - 20px);
    box-sizing: border-box;
}

.address-container {
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.address-container h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.address-container p {
    margin: 5px 0;
    font-size: 0.95em;
    line-height: 1.5;
}
.address-container #email a {
    color: #e63946;
}

.address-container #email a:hover {
    text-decoration: underline;
    color: #ff4d00;
}

.map-link {
    color: #e63946;
    text-decoration: none;
}

.map-link:hover {
    text-decoration: underline;
}

/* Responsiveness */
@media screen and(max-width:768px) {
    .form .column {
        flex-wrap: wrap;
    }
    .form :where(.gender-option, .gender) {
        row-gap: 15px;
    }

    #label-message {
        font-size: 14px;
    }

    #message {
        font-size: 13px;
        padding: 10px;
    }
    .contact-section {
        flex-direction: column;
    }

    .form-container,
    .address-container {
        flex: 1 1 100%;
    }
}
