.contact-section {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.contact-details i {
    color: #1B2C51 !important;
}

.contact-item {
    flex: 1 1 48%;
    box-sizing: border-box;
}

iframe {
    width: 100%;
    height: 100%;
    border: none;
}

form {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

form label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

form input,
form textarea,
form button {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
}

form button {
    background: #133785;
    color: white;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

form button:hover {
    background: #00264d;
}

@media (max-width: 768px) {
    .contact-item {
        flex: 1 1 100%;
    }

    .contact-details {
        flex-direction: column;
        align-items: center;
    }

    .contact-details div {
        text-align: left;
    }
}


.form-submission {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.form-submission img {
    width: 50%;
}

.form-submit {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.form-submit img {
    width: 50%;
}

.error-message {
    color: red;
    font-size: 0.875rem;
}

.hide-div {
    display: none;
}

/* Checkbox Contact us */
.products-checkbox {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.product-checkbox {
    width: 45%;
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    text-align: left;
}

.product-checkbox input {
    width: 15px;
    height: 15px;
}

.product-checkbox label {
    font-weight: 500;
    font-size: 13px;
    align-items: center;
}