.contacts-page-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #003d6b;
    margin: 0;
    letter-spacing: 0.01em;
}
.contacts-page-subtitle {
    font-size: 1rem;
    color: #888;
    margin: 4px 0 0;
}

.info-card {
    border: none;
    border-radius: 10px;
    padding: 24px 22px;
    height: 100%;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,.07);
    display: flex;
    flex-direction: column;
    gap: 0;
}
.info-card__header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e8f4fc;
}
.info-card__icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #e8f4fc;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.info-card__icon svg {
    width: 18px;
    height: 18px;
    color: #005a9e;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.info-card__title {
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #005a9e;
    margin: 0;
}
.info-card__body {
    font-size: 0.875rem;
    color: #444;
    line-height: 1.6;
    flex: 1;
}
.info-card__body .label {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: #888;
    margin-bottom: 2px;
    margin-top: 12px;
    display: block;
}
.info-card__body .label:first-child {
    margin-top: 0;
}
.info-card__body .inline-row {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-top: 12px;
}
.info-card__body .inline-row .label {
    margin: 0;
    flex-shrink: 0;
}
.info-card__body .value {
    color: #1a1a1a;
    font-weight: 500;
}
.info-card__body a {
    color: #005a9e;
    text-decoration: none;
}
.info-card__body a:hover {
    text-decoration: underline;
}

/* Phone rows */
.phone-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}
.phone-row:last-of-type {
    margin-bottom: 0;
}
.phone-row .phone-number {
    font-weight: 600;
    font-size: 0.9rem;
    color: #1a1a1a;
    white-space: nowrap;
}
.phone-row .operator-badge {
    height: 18px;
    width: auto;
    object-fit: contain;
    opacity: 0.85;
}

/* Hours table */
.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.875rem;
}
.hours-row:last-child {
    border-bottom: none;
}
.hours-row .day {
    color: #555;
}
.hours-row .time {
    font-weight: 600;
    color: #005a9e;
}
.hours-row .closed {
    font-weight: 600;
    color: #aaa;
}

/* Map section */
.map-section {
    margin-top: 4px;
}
.map-section__header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}
.map-section__header svg {
    width: 18px;
    height: 18px;
    color: #005a9e;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}
.map-section__title {
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #005a9e;
    margin: 0;
}
.map-frame {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,.08);
}

