:root {
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        "Segoe UI",
        sans-serif;
    color: #101b35;
}
* {
    box-sizing: border-box;
}
body {
    margin: 0;
    background: #fff;
}
.contact-page {
    width: min(100%, 520px);
    margin: auto;
    padding: calc(18px + env(safe-area-inset-top)) 22px calc(24px + env(safe-area-inset-bottom));
}
.contact-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 48px;
    margin-bottom: 18px;
}
.contact-header h1 {
    font-size: 24px;
    margin: 0;
    font-weight: 800;
    color: #0d2a63;
}
.back {
    border: 0;
    background: none;
    font-size: 31px;
    color: #0d2a63;
    padding: 0;
    line-height: 1;
}
.head-icon {
    font-size: 27px;
    color: #1268ed;
}
.intro {
    display: flex;
    gap: 14px;
    padding: 20px;
    border-radius: 18px;
    background: #eef5ff;
    margin-bottom: 20px;
}
.info {
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 50%;
    background: #1268ed;
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 800;
}
.intro strong {
    font-size: 17px;
}
.intro p {
    margin: 6px 0 0;
    line-height: 1.45;
    color: #4f5c76;
    font-size: 14px;
}
.contact-options {
    display: grid;
    gap: 12px;
}
.contact-card {
    min-height: 100px;
    padding: 18px;
    border: 1px solid #e2e7ef;
    border-radius: 18px;
    display: grid;
    grid-template-columns: 56px 1fr 20px;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #101b35;
    box-shadow: 0 3px 14px rgba(22, 45, 86, 0.035);
}
.option-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 26px;
    font-weight: 700;
}
.whatsapp .option-icon {
    background: #18c968;
}
.phone .option-icon {
    background: #1268ed;
}
.email .option-icon {
    background: #5637d6;
}
.help .option-icon {
    background: #f3aa16;
}
.contact-card strong {
    display: block;
    font-size: 17px;
}
.contact-card small {
    display: block;
    margin-top: 6px;
    color: #657089;
    font-size: 14px;
    line-height: 1.35;
}
.contact-card > b {
    font-size: 30px;
    font-weight: 400;
}
@media (max-width: 370px) {
    .contact-page {
        padding-left: 15px;
        padding-right: 15px;
    }
    .contact-card {
        padding: 14px;
    }
    .contact-card strong {
        font-size: 16px;
    }
}
