/* OTOD3 - Contact Styles */

.otod-contact-section {
    width: 100%;
    min-height: calc(100vh - 70px);
    padding: 60px 40px;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.otod-contact-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.otod-contact-container {
    background-color: var(--otod-color-white);
    border-radius: 10px;
    padding: 60px 80px;
    box-shadow: var(--otod-shadow-sm);
    max-width: 600px;
    width: 100%;
    text-align: center;
}

.otod-contact-title {
    color: var(--otod-color-dark-text);
    font-size: 42px;
    font-weight: 400;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .otod-contact-section {
        padding: 40px 20px;
    }

    .otod-contact-container {
        padding: 40px 30px;
    }

    .otod-contact-title {
        font-size: 32px;
    }
}
