:root {
    --bg: #ffffff;
    --surface: #f6f8fb;
    --surface-blue: #f2f7fc;
    --text: #1d2730;
    --muted: #66727e;
    --line: #dce4eb;
    --primary: #1769aa;
    --primary-dark: #0e4f82;
    --featured: #e14c38;
    --featured-soft: #fff4f1;
    --gold: #9c6817;
    --gold-bg: #fff7e7;
    --shadow: 0 8px 24px rgba(25, 43, 58, 0.07);
    --radius: 16px;
    --container: 1120px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

a {
    color: inherit;
}

.container {
    width: min(calc(100% - 32px), var(--container));
    margin: 0 auto;
}

.narrow {
    max-width: 820px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(10px);
}

.header-inner {
    min-height: 62px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--text);
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
}

.brand-icon {
    width: 31px;
    height: 31px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    background: var(--primary);
    color: #fff;
    font-size: 16px;
}

.top-nav {
    display: flex;
    gap: 18px;
    color: var(--muted);
    font-size: 14px;
}

.top-nav a {
    text-decoration: none;
}

.top-nav a:hover,
.site-footer a:hover {
    color: var(--primary);
}

.hero {
    padding: 42px 0 44px;
    background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
    border-bottom: 1px solid var(--line);
}

.breadcrumbs {
    margin-bottom: 22px;
    color: var(--muted);
    font-size: 13px;
}

.eyebrow {
    display: block;
    margin-bottom: 7px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

h1,h2,h3,h4
.section-title,
.privacy-subtitle {
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: -0.015em;
}

h1 {
    margin: 0 0 12px;
    font-size: clamp(32px, 4vw, 46px);
}

h2 {
    margin: 0;
    font-size: clamp(24px, 3vw, 30px);
}

h3 {
    margin: 0;
    font-size: clamp(22px, 2.5vw, 25px);
    font-weight: 400;
}

h4 {
    margin: 0;
    font-size: clamp(20px, 23vw, 20px);
    font-weight: 400;
}


.lead {
    max-width: 720px;
    margin: 0;
    color: var(--muted);
    font-size: 17px;
}

.section {
    padding: 45px 0;
    padding-bottom: 25px;
}

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 22px;
}

.section-heading p {
    max-width: 390px;
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.section-title {
    margin: 0;
    font-size: clamp(24px, 3vw, 30px);
}



.map-frame {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 470px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #edf2f6;
    box-shadow: var(--shadow);
}

.map {
    width: 100%;
    height: 100%;
}

.map-error {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 24px;
    background: rgba(246, 248, 251, 0.97);
    color: var(--muted);
    text-align: center;
}

.map-error[hidden] {
    display: none;
}

.offices-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-bottom: 30px;
}

.office-card {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 4px 15px rgba(25, 43, 58, 0.035);
}

.office-card.featured {
    border: 2px solid var(--featured);
    background: linear-gradient(135deg, #fff8f5 0%, #ffffff 72%);
    box-shadow: 0 12px 30px rgba(225, 76, 56, 0.14);
}

.recommended {
    display: inline-block;
    margin-bottom: 15px;
    padding: 5px 10px;
    border-radius: 999px;
    background: var(--featured);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.office-header {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 18px;
}

.rank {
    width: 36px;
    height: 36px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: var(--surface-blue);
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
}

.featured .rank {
    background: var(--featured-soft);
    color: var(--featured);
}

.office-name {
    font-size: 19px;
    font-weight: 500;
    line-height: 1.25;
}

.rating {
    margin-top: 4px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
}

.featured .rating {
    color: var(--featured);
}

.rating span {
    margin-left: 5px;
    color: var(--muted);
    font-weight: 400;
}

.office-note {
    max-width: 780px;
    margin: 0 0 20px;
    color: var(--muted);
    font-size: 14px;
}

.details {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 28px;
}

.details div {
    min-width: 0;
}

.details span {
    display: block;
    margin-bottom: 2px;
    color: var(--muted);
    font-size: 12px;
}

.details .detail-value {
    display: block;
    font-size: 14px;
    font-weight: 500;
    overflow-wrap: anywhere;
}

.details a {
    color: var(--primary);
    text-decoration: none;
}

.details a:hover {
    text-decoration: underline;
}

.rating-note {
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 12px;
}

.info-section {
    background: var(--surface);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.info-section p {
    margin: 0 0 19px;
    color: #43505b;
    font-size: 16px;
}

.info-section p:last-child {
    margin-bottom: 0;
}

.info-section strong {
    color: var(--text);
    font-weight: 600;
}

.faq-section {
    background: #fff;
}

.faq-list {
    border-top: 1px solid var(--line);
}

.faq-list details {
    border-bottom: 1px solid var(--line);
}

.faq-list summary {
    padding: 17px 38px 17px 0;
    position: relative;
    color: var(--text);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    list-style: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    content: "+";
    position: absolute;
    top: 13px;
    right: 3px;
    color: var(--primary);
    font-size: 22px;
    font-weight: 400;
}

.faq-list details[open] summary::after {
    content: "−";
}

.faq-list details p {
    max-width: 760px;
    margin: 0 0 18px;
    color: var(--muted);
    font-size: 14px;
}

.site-footer {
    padding: 26px 0;
    background: #17232d;
    color: #cbd4dc;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-inner nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    font-size: 13px;
}

.footer-inner p {
    margin: 0;
    color: #91a0ad;
    font-size: 12px;
}

.cookie-notice {
    position: fixed;
    right: 18px;
    bottom: 18px;
    left: 18px;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    max-width: 980px;
    margin: 0 auto;
    padding: 15px 18px;
    border: 1px solid #cfd9e2;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 12px 40px rgba(16, 31, 45, 0.18);
}

.cookie-notice[hidden] {
    display: none;
}

.cookie-text {
    color: #3f4c57;
    font-size: 13px;
}

.cookie-text a {
    color: var(--primary);
    text-decoration: underline;
}

.cookie-notice button {
    flex: 0 0 auto;
    min-width: 92px;
    padding: 9px 16px;
    border: 0;
    border-radius: 9px;
    background: var(--primary);
    color: #fff;
    font: inherit;
    font-size: 14px;
    cursor: pointer;
}

.cookie-notice button:hover {
    background: var(--primary-dark);
}

.privacy-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.privacy-page main {
    flex: 1;
}

.privacy-content {
    padding: 48px 0 64px;
}

.privacy-content .breadcrumbs {
    margin-bottom: 28px;
}

.privacy-content h1 {
    margin-bottom: 22px;
    font-size: clamp(29px, 3.5vw, 40px);
}

.privacy-content h2,
.privacy-subtitle {
    margin: 30px 0 10px;
    font-size: 22px;
}

.privacy-content p {
    margin: 0 0 15px;
    color: #43505b;
    font-size: 15px;
}

.balloon-card {
    width: 300px;
    padding: 2px;
    color: #1d2730;
    font-family: Arial, sans-serif;
    font-size: 12px;
    line-height: 1.45;
}

.balloon-card-featured {
    width: 315px;
}

.balloon-recommended {
    display: inline-block;
    margin-bottom: 6px;
    padding: 3px 7px;
    border-radius: 999px;
    background: #e14c38;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
}

.balloon-name {
    margin-bottom: 2px;
    font-size: 16px;
    font-weight: 600;
}

.balloon-rating {
    margin-bottom: 8px;
    color: #1769aa;
    font-size: 11px;
}

.balloon-card-featured .balloon-rating {
    color: #e14c38;
}

.balloon-row {
    padding: 5px 0;
    border-top: 1px solid #edf0f2;
}

.balloon-row span {
    display: block;
    margin-bottom: 1px;
    color: #71808c;
    font-size: 10px;
}

.balloon-row a {
    color: #1769aa;
    text-decoration: none;
}

.balloon-row a:hover {
    text-decoration: underline;
}

@media (max-width: 760px) {
    .top-nav {
        display: none;
    }

    .hero {
        padding: 34px 0 38px;
    }

    .section {
        padding: 20px 0;
        padding-bottom: 5px;
    }

    .section-heading {
        display: block;
    }

    .section-heading p {
        margin-top: 7px;
    }

    .map-frame {
        height: 390px;
    }

    .details {
        grid-template-columns: 1fr;
    }

    .cookie-notice {
        align-items: stretch;
        flex-direction: column;
        gap: 10px;
        right: 10px;
        bottom: 10px;
        left: 10px;
        padding: 14px;
    }

    .cookie-notice button {
        width: 100%;
    }
}

@media (max-width: 520px) {
    .container {
        width: min(calc(100% - 22px), var(--container));
    }

    .header-inner {
        min-height: 58px;
    }

    .brand {
        font-size: 15px;
    }

    .brand-icon {
        width: 29px;
        height: 29px;
    }

    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 25px;
    }

    .lead {
        font-size: 16px;
    }

    .map-frame {
        height: 330px;
        border-radius: 13px;
    }

    .office-card {
        padding: 19px;
        border-radius: 13px;
    }

    .footer-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .balloon-card,
    .balloon-card-featured {
        width: 250px;
    }
}

.office-card.featured {
    border-color: #0d5ea7;
    background: linear-gradient(135deg, #f2f8ff 0%, #ffffff 72%);
}

.featured-ribbon {
    background: #f5a623;
    color: #26323c;
}

.featured-mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    margin: -4px 0 12px;
    border-radius: 12px;
    background: #0d5ea7;
    color: #fff;
    font-size: 20px;
}

.messengers {
    display: flex;
    gap: 8px;
    margin-top: 18px;
}

.messenger {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
}

.messenger svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.messenger.max {
    background: #007AFF;
}

.messenger.telegram {
    background: #229ed9;
}

.messenger.whatsapp {
    background: #25d366;
}

.map-status {
    position: absolute;
    left: 50%;
    top: 16px;
    z-index: 10;
    transform: translateX(-50%);
    padding: 7px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255,255,255,.94);
    color: var(--muted);
    font-size: 12px;
    box-shadow: 0 4px 15px rgba(25,43,58,.09);
}

.map-status[hidden]{display:none;}


:root {
    --featured: #218c63;
    --featured-dark: #176b4b;
    --featured-soft: #edf8f2;
    --gold: #8b641d;
    --gold-bg: #fff8e8;
}

.office-card.featured {
    border: 2px solid var(--featured);
    background: linear-gradient(135deg, #f0faf5 0%, #ffffff 72%);
    box-shadow: 0 14px 34px rgba(33, 140, 99, 0.16);
}

.featured-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 15px;
}

.featured-ribbon {
    display: inline-flex;
    align-items: center;
    margin: 0;
    padding: 6px 11px;
    border-radius: 999px;
    background: var(--featured);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.featured-logo-wrap {
    width: 170px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.featured-logo {
    display: block;
    max-width: 170px;
    max-height: 48px;
    object-fit: contain;
}

.featured .rank {
    background: var(--featured-soft);
    color: var(--featured);
}

.featured .office-name,
.featured .rating,
.featured .details a {
    color: var(--featured-dark);
}

.featured .office-name {
    font-size: 21px;
}

.featured .office-note {
    color: #405d50;
}

.messengers {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
}

.messenger {
    width: 39px;
    height: 39px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    transition: transform .15s ease, box-shadow .15s ease;
}

.messenger:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(25, 43, 58, .14);
}

.messenger svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.messenger.max {
    background: #007AFF;
}

.messenger.telegram { background: #229ed9; }
.messenger.whatsapp { background: #25d366; }

.recommended-map-marker {
    width: 50px;
    height: 50px;
    padding: 2px;
    border: 3px solid #fff;
    border-radius: 50%;
    background: #218c63;
    box-shadow: 0 3px 12px rgba(24, 78, 55, .35);
}

.recommended-map-marker img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.map-note {
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 12px;
}

.balloon-card-featured .balloon-recommended {
    background: #218c63;
    color: #fff;
}

.balloon-card-featured .balloon-rating,
.balloon-card-featured .balloon-row a {
    color: #176b4b;
}

@media (max-width: 520px) {
    .featured-top {
        align-items: flex-start;
    }

    .featured-logo-wrap {
        width: 125px;
        height: 38px;
    }

    .featured-logo {
        max-width: 125px;
        max-height: 38px;
    }
}


.office-card:not(.featured) {
    border-color: #dbe4ec;
    background: #ffffff;
}

.office-card:not(.featured) .rank {
    background: #eef5fb;
    color: #1f78c1;
}

.office-card:not(.featured) .rating {
    color: #1f78c1;
}

.office-card.featured {
    border: 2px solid #218c63;
    background: linear-gradient(135deg, #f1faf5 0%, #ffffff 74%);
    box-shadow: 0 14px 34px rgba(33, 140, 99, 0.16);
}

.office-card.featured .featured-ribbon {
    background: #218c63;
    color: #ffffff;
}

.office-card.featured .featured-logo-wrap {
    border-color: #b8dfcd;
    background: #ffffff;
}

.office-card.featured .featured-logo {
    max-width: 170px;
    max-height: 48px;
}

.office-card.featured .rank {
    background: #edf8f2;
    color: #176b4b;
}

.office-card.featured .office-name,
.office-card.featured .rating,
.office-card.featured .details a {
    color: #176b4b;
}

.office-card.featured .office-note {
    color: #43505b;
}

.office-card.featured .messenger {
    box-shadow: none;
}

.office-card.featured .messenger:hover {
    box-shadow: 0 5px 14px rgba(0, 0, 0, 0.14);
}

.recommended-map-marker {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 4px solid #218c63;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 5px 16px rgba(33, 140, 99, 0.30);
}

.recommended-map-marker img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 4px;
}


.messengers {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.office-card:not(.featured) {
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: 0 4px 15px rgba(25, 43, 58, 0.035);
}

.office-card:not(.featured) .rank {
    background: var(--surface-blue);
    color: var(--primary);
}

.office-card:not(.featured) .rating {
    color: var(--primary);
}

.office-card.featured {
    border: 2px solid #218c63;
    background: linear-gradient(135deg, #f0faf5 0%, #ffffff 72%);
    box-shadow: 0 14px 34px rgba(33, 140, 99, 0.16);
}

.office-card.featured .featured-ribbon {
    background: #218c63;
    color: #ffffff;
}

.office-card.featured .rank {
    background: #edf8f2;
    color: #176b4b;
}

.office-card.featured .office-name,
.office-card.featured .rating,
.office-card.featured .details a {
    color: #176b4b;
}

.recommended-map-marker {
    width: 28px;
    height: 28px;
    box-sizing: border-box;
    border: 4px solid #ffffff;
    border-radius: 50%;
    background: #218c63;
    box-shadow:
        0 0 0 2px #218c63,
        0 5px 14px rgba(33, 140, 99, 0.38);
}

@media (max-width: 640px) {
    .messengers {
        gap: 7px;
    }

    .messenger {
        width: 38px;
        height: 38px;
    }
}


.featured-logo-wrap,
.featured-logo {
    display: none !important;
}


.balloon-row a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 2px;
}


.office-card.featured {
    border-color: #218c63;
    background: linear-gradient(135deg, #f0faf5 0%, #ffffff 72%);
    box-shadow: 0 14px 34px rgba(33, 140, 99, 0.16);
}

.office-card.featured .featured-ribbon {
    background: #218c63;
    color: #ffffff;
}

.office-card.featured .rank {
    background: #edf8f2;
    color: #176b4b;
}

.office-card.featured .office-name,
.office-card.featured .rating,
.office-card.featured .details a {
    color: #176b4b;
}

.balloon-card-featured {
    border-top: 0;
}

.recommended-map-marker {
    width: 30px;
    height: 30px;
    box-sizing: border-box;
    border: 4px solid #ffffff;
    border-radius: 50%;
    background: #218c63;
    box-shadow:
        0 0 0 2px #218c63,
        0 5px 14px rgba(33, 140, 99, 0.38);
}


.details .detail-value {
    display: block;
    font-weight: 500;
    color: var(--text);
}

.privacy-date {
    display: inline-block;
    font-weight: 500;
}

.info-section h5 {
    margin: 28px 0 10px;
    color: var(--text);
    font-size: 18px;
    line-height: 1.35;
    font-weight: 500;
}

.info-section h6 {
    margin: 18px 0 7px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.4;
    font-weight: 500;
}

h1 {
    font-size: clamp(29px, 3.4vw, 36px);
}

h2 {
    font-size: clamp(22px, 2.7vw, 28px);
}

@media (max-width: 760px) {
    .header-inner {
        justify-content: center;
    }

    .brand {
        margin-inline: auto;
    }
}

@media (max-width: 520px) {
    h1 {
        font-size: 29px;
    }

    h2 {
        font-size: 23px;
    }
}


.comparison-table-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border: 1px solid #e2e6ea;
    border-radius: 12px;
    background: #ffffff;
    margin-top: 20px;
}

.comparison-table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
    font-size: 15px;
    line-height: 1.45;
    color: #30363d;
}

.comparison-table th,
.comparison-table td {
    padding: 15px 16px;
    text-align: left;
    vertical-align: middle;
    border-bottom: 1px solid #e8ebee;
}

.comparison-table thead th {
    background: #f5f7f8;
    color: #454d55;
    font-weight: 400;
    white-space: nowrap;
}

.comparison-table tbody th {
    font-weight: 400;
    color: #20262e;
}

.comparison-table tbody tr:last-child th,
.comparison-table tbody tr:last-child td {
    border-bottom: 0;
}

.comparison-table tbody tr:hover {
    background: #fafbfc;
}

.comparison-table__recommended {
    background: #eef9f3;
}

.comparison-table__recommended:hover {
    background: #e8f6ee;
}

.comparison-table__recommended th {
    color: #176b4b;
}

.table-rating {
    display: inline-block;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

@media (max-width: 767px) {
    .comparison-table {
        min-width: 720px;
        font-size: 14px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 13px 14px;
    }
}

.odd-section {
    background: #f7f8fa;
}


.section-reviews {
}

.reviews-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.reviews-title {
    margin-bottom: 28px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.review-card {
    padding: 22px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-sizing: border-box;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.review-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 7px;
}

.review-office {
    font-size: 18px;
    line-height: 1.35;
    font-weight: 700;
    color: #1f2937;
}

.review-author {
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.4;
    color: #6b7280;
}

.review-rating {
    display: flex;
    flex-shrink: 0;
    gap: 2px;
    font-size: 19px;
    line-height: 1;
    color: #f5b301;
    white-space: nowrap;
}

.review-rating .star-empty {
    color: #d1d5db;
}

.review-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: #4b5563;
}

@media (max-width: 768px) {
    .section-reviews {
    }

    .reviews-container {
        padding: 0 15px;
    }

    .reviews-title {
        margin-bottom: 22px;
        font-size: 25px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .review-card {
        padding: 18px;
    }

    .review-top {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .review-office {
        font-size: 17px;
    }

    .review-card p {
        font-size: 15px;
    }
}