.contact-page {

    padding: 40px 20px;

    background: #f8fafc;

}

.contact-card {

    max-width: 900px;

    margin: 0 auto;

    background: #ffffff;

    border-radius: 16px;

    padding: 50px;

    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);

}

.contact-title {

    font-family: "Playfair Display", serif;

    font-size: 40px;

    color: #01163e;

    margin-bottom: 20px;

}

.contact-divider {

    width: 60px;

    height: 4px;

    background: #3f51b5;

    margin-bottom: 40px;

    border-radius: 2px;

}

.contact-content p {

    font-size: 20px;

    line-height: 1.9;

    color: #1f2937;

    margin-bottom: 28px;

}

.contact-email-card {

    display: flex;

    align-items: center;

    gap: 24px;

    background: #f8fafc;

    border: 1px solid #e5e7eb;

    border-radius: 16px;

    padding: 24px;

    margin: 32px 0;

}

.contact-email-icon {

    width: 56px;

    height: 56px;

    border-radius: 50%;

    background: #3f51b5;

    color: #ffffff;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 28px;

    flex-shrink: 0;

}

.contact-email-content a {

    font-size: 25px;

    color: #3f51b5;

    font-weight: 600;

    text-decoration: none;

}

.contact-email-content a:hover {

    text-decoration: underline;

}

.brand-link-inline {

    color: #3f51b5;

    text-decoration: none;

    font-weight: 600;

}

.brand-link-inline:hover {

    text-decoration: underline;

}

@media (max-width: 768px) {

    .contact-card {

        padding: 30px 20px;

    }

    .contact-title {

        font-size: 32px;

    }

    .contact-email-card {

        flex-direction: column;

        text-align: center;

    }

    .contact-email-content a {

        font-size: 20px;

        word-break: break-word;

    }

}