/* Contact page – same theme as site (Poppins, #097a6e, black/white) */
.contact_page {
    width: 100%;
    min-height: 100vh;
}

.contact_page .container {
    padding: 4% 8%;
    max-width: 1000px;
    margin: 0 auto;
}

.contact_title {
    font-family: "Poppins", sans-serif;
    font-size: 40px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 12px;
    color: #000;
}

.contact_intro {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    color: #868686;
    text-align: center;
    margin-bottom: 48px;
    line-height: 1.5;
}

.contact_content {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.contact_cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.contact_card {
    display: block;
    background-color: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
    color: inherit;
}

.contact_card:hover {
    border-color: #097a6e;
    box-shadow: 0 8px 24px rgba(9, 122, 110, 0.12);
}

.contact_card_icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    background-color: #f1f1f1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact_card_icon ion-icon {
    font-size: 28px;
    color: #097a6e;
}

.contact_card h3 {
    font-family: "Poppins", sans-serif;
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #000;
}

.contact_card p {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    color: #868686;
    line-height: 1.5;
    margin-bottom: 16px;
}

.contact_cta {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #097a6e;
}

.contact_card:hover .contact_cta {
    text-decoration: underline;
}

.contact_note {
    background-color: #f1f1f1;
    padding: 24px 28px;
    border-radius: 8px;
    border-left: 4px solid #097a6e;
}

.contact_note p {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    color: #565555;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 767px) {
    .contact_cards {
        grid-template-columns: 1fr;
    }

    .contact_title {
        font-size: 32px;
    }

    .contact_page .container {
        padding: 6% 5%;
    }
}
