*, *::before, *::after { box-sizing: border-box; }

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
    background: #f8f9fa;
    color: #2d3436;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.nav-open {
    overflow: hidden;
    touch-action: none;
}
body.nav-open .site-header {
    z-index: 1002;
}

a { color: #0984e3; text-decoration: none; }
a:hover { color: #0652DD; text-decoration: underline; }
:root {
    --anchor-scroll-padding: 96px;
}

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

h1[id],
h2[id],
h3[id],
section[id] {
    scroll-margin-top: var(--anchor-scroll-padding);
}
h1, h2, h3, h4, h5, h6 {
    color: #1e272e;
    font-weight: 700;
    line-height: 1.25;
    margin: 0;
}

h1 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 1rem;
    line-height: 1.2;
}

h2 {
    font-size: 1.5rem;
    font-weight: 700;
margin: 1rem 0;
    line-height: 1.3;
}

h1 + h2 {
    margin-top: 0.75rem;
}

h3 {
    font-size: 1.25rem;
    font-weight: 600;
margin: 1rem 0;
    line-height: 1.35;
}

h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 1.25rem 0 0.5rem;
    line-height: 1.4;
}

h5 {
    font-size: 1rem;
    font-weight: 600;
    margin: 1rem 0 0.5rem;
    line-height: 1.45;
}

h6 {
    font-size: 0.9375rem;
    font-weight: 600;
    margin: 1rem 0 0.5rem;
    line-height: 1.45;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

p {
    font-size: 1rem;
    line-height: 1.7;
    margin: 0 0 1rem;
}

ul, ol {
    font-size: 1rem;
    line-height: 1.65;
    margin: 0 0 1rem;
    padding-left: 1.5rem;
}

ul li,
ol li {
    margin: 0.375rem 0;
    padding-left: 0.125rem;
}

ul li:first-child,
ol li:first-child {
    margin-top: 0;
}

ul li:last-child,
ol li:last-child {
    margin-bottom: 0;
}

ul ul,
ul ol,
ol ul,
ol ol {
    margin-top: 0.375rem;
    margin-bottom: 0.375rem;
}

.page-content > h2:first-child,
.page-content > h3:first-child,
.page-content > h4:first-child {
    margin-top: 0;
}

img { max-width: 100%; height: auto; }

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}
.site-header {
    background: #fff;
    border-bottom: 1px solid #e1e8ed;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 0;
    min-height: 56px;
}

.logo-block {
    flex: 0 0 auto;
    max-width: 45%;
}

.logo-link {
    display: block;
    line-height: 0;
}

img.logo {
    width: auto;
    height: auto;
    max-width: 200px;
    max-height: 48px;
    object-fit: contain;
    vertical-align: middle;
}
.breadcrumbs-bar {
    background: #f8f9fa;
    border-bottom: 1px solid #e1e8ed;
    padding: 10px 0;
}

.breadcrumbs-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 0;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 0.8125rem;
    line-height: 1.4;
    color: #636e72;
}

.breadcrumbs-item {
    display: inline-flex;
    align-items: center;
    margin: 0;
}

.breadcrumbs-item:not(:last-child)::after {
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    margin: 0 10px;
    border-right: 1px solid #b2bec3;
    border-bottom: 1px solid #b2bec3;
    transform: rotate(-45deg);
    vertical-align: middle;
    flex-shrink: 0;
}

.breadcrumbs-link {
    color: #0984e3;
    text-decoration: none;
}

.breadcrumbs-link:hover {
    text-decoration: underline;
}

.breadcrumbs-current {
    color: #1e272e;
    font-weight: 600;
    max-width: 100%;
}

.navigation {
    position: relative;
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.nav-select {
    display: block;
    width: auto;
    max-width: 100%;
}

.nav-menu {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 4px;
}

.nav-menu .menu-item {
    position: relative;
    margin: 0;
    line-height: inherit;
}

.sub-menu .menu-item {
    margin: 0;
    line-height: inherit;
}

.nav-menu a {
    display: block;
    padding: 8px 14px;
    color: #2d3436;
    font-size: 14px;
    font-weight: 500;
    border-radius: 6px;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.15s, color 0.15s;
}

.nav-menu a:hover {
    background: #f0f4f8;
    color: #0984e3;
    text-decoration: none;
}

.sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid #e1e8ed;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    padding: 0;
    min-width: 200px;
    z-index: 200;
    list-style: none;
}
@media (min-width: 992px) {
    .menu-item-has-children:hover > .sub-menu {
        display: block;
    }

    .nav-menu > .menu-item-has-children {
        padding-bottom: 14px;
        margin-bottom: -14px;
    }

    .nav-menu > .menu-item-has-children > .sub-menu {
        top: 100%;
        margin-top: -2px;
    }

    .nav-menu > .menu-item-has-children > .sub-menu::before {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        bottom: 100%;
        height: 14px;
    }
}

.sub-menu a {
    padding: 8px 16px;
    font-size: 14px;
    border-radius: 0;
}

.sub-menu a:hover {
    background: #f0f4f8;
}
.navbar-toggle-wrapper {
    display: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    flex-shrink: 0;
}

.navbar-toggle {
    display: block;
    width: 22px;
    height: 2px;
    background: #2d3436;
    position: relative;
    transition: background 0.2s;
}

.navbar-toggle::before,
.navbar-toggle::after {
    content: '';
    display: block;
    width: 22px;
    height: 2px;
    background: #2d3436;
    position: absolute;
    left: 0;
    transition: transform 0.2s;
}

.navbar-toggle::before { top: -7px; }
.navbar-toggle::after { top: 7px; }

.navbar-toggle-wrapper.is-active .navbar-toggle {
    background: transparent;
}

.navbar-toggle-wrapper.is-active .navbar-toggle::before {
    top: 0;
    transform: rotate(45deg);
}

.navbar-toggle-wrapper.is-active .navbar-toggle::after {
    top: 0;
    transform: rotate(-45deg);
}
.navbar-toggle-wrapper.is-active .navbar-toggle::before,
.navbar-toggle-wrapper.is-active .navbar-toggle::after {
    background: #1e272e;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.85);
}
.hero-section {
    background: linear-gradient(135deg, #1e3a5f 0%, #0984e3 100%);
    color: #fff;
    padding: 64px 0;
    text-align: center;
}

.hero-content { max-width: 720px; margin: 0 auto; }

.hero-content h1 {
    color: #fff;
    font-size: 2.25rem;
    line-height: 1.2;
    margin: 0 0 1.25rem;
}

.hero-lead {
    font-size: 1.125rem;
    opacity: 0.92;
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn:hover { text-decoration: none; }

.btn-primary {
    background: #0984e3;
    color: #fff;
    border-color: #0984e3;
}

.btn-primary:hover {
    background: #0652DD;
    border-color: #0652DD;
    color: #fff;
}

.btn-outline {
    background: transparent;
    color: #0984e3;
    border-color: #0984e3;
}

.btn-outline:hover {
    background: #0984e3;
    color: #fff;
}

.hero-section .btn-outline {
    color: #fff;
    border-color: rgba(255,255,255,0.5);
}

.hero-section .btn-outline:hover {
    background: rgba(255,255,255,0.15);
    border-color: #fff;
    color: #fff;
}

.btn-sm {
    padding: 6px 16px;
    font-size: 13px;
    background: #0984e3;
    color: #fff;
    border-radius: 6px;
}

.btn-sm:hover {
    background: #0652DD;
    color: #fff;
}
.section {
    padding: 56px 0;
}

.section-alt {
    background: #fff;
}

.text-center { text-align: center; }
.content-with-sidebar {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    padding: 40px 0;
}

.content-area {
    min-width: 0;
}

.page-content {
    background: #fff;
    border-radius: 12px;
    padding: 32px;
    border: 1px solid #e1e8ed;
}

.page-lead {
    font-size: 1.1em;
    color: #636e72;
    margin-bottom: 32px;
}
.platform-picks-lead {
    margin: 0 0 28px;
    color: #636e72;
    font-size: 1rem;
    line-height: 1.65;
}

.platform-picks {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 0 0 12px;
}

.platform-picks-foot {
    margin: 0;
    font-size: 0.9375rem;
    color: #636e72;
}

.platform-pick-card {
    position: relative;
    background: #fff;
    border: 1px solid #e1e8ed;
    border-radius: 14px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(30, 39, 46, 0.04);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.platform-pick-card:hover {
    border-color: #b8d4f0;
    box-shadow: 0 6px 24px rgba(9, 132, 227, 0.08);
}

.platform-pick-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 18px;
    padding: 16px 22px 16px 12px;
    min-height: 88px;
}
.platform-pick-rank {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 2.125rem;
    height: 2.125rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #0984e3 0%, #0766b8 100%);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    border-radius: 13px 0 12px 0;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

.platform-pick-brand {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 158px;
    min-height: 52px;
    padding: 0 16px 0 30px;
    border-right: 1px solid #eef2f5;
}

.platform-pick-brand img {
    display: block;
    max-width: 100%;
    width: auto;
    max-height: 52px;
    height: auto;
    object-fit: contain;
    object-position: left center;
}

.platform-pick-main {
    flex: 1 1 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: clamp(16px, 3vw, 32px);
    min-width: 0;
}

.platform-pick-rating {
    flex-shrink: 0;
    text-align: left;
    font-size: 15px;
    font-weight: 600;
    color: #2d3436;
    min-width: 4.5rem;
}

.platform-pick-star {
    color: #27ae60;
    font-size: 16px;
}

.platform-pick-rating--alt .platform-pick-star {
    color: #e67e22;
}

.platform-pick-rating .platform-pick-rating-hint {
    font-weight: 500;
    font-size: 12px;
    color: #95a5a6;
}

.platform-pick-rating--alt {
    color: #5d4e37;
}

.platform-pick-rating--alt .platform-pick-rating-hint {
    color: #b2bec3;
}

.platform-pick-specs {
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0 12px;
    flex: 1 1 auto;
    min-width: 0;
}

.platform-pick-specs > div {
    margin: 0;
    padding: 0 0 0 14px;
    border-left: 1px solid #eef2f5;
}

.platform-pick-specs > div:first-child {
    padding-left: 0;
    border-left: none;
}

.platform-pick-specs dt {
    margin: 0 0 2px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #95a5a6;
    line-height: 1.3;
}

.platform-pick-specs dd {
    margin: 0;
    font-size: 14px;
    color: #2d3436;
    line-height: 1.45;
}

.platform-pick-cta {
    flex-shrink: 0;
    align-self: center;
    width: auto;
    min-width: 168px;
    text-align: center;
    padding: 10px 18px;
    font-size: 14px;
    white-space: nowrap;
}

@media (max-width: 991px) {
    .platform-pick-row {
        flex-wrap: wrap;
        align-items: center;
        padding: 16px 18px 16px 10px;
    }

    .platform-pick-brand {
        order: 1;
        flex: 1 1 auto;
        min-width: 0;
    }

    .platform-pick-cta {
        order: 2;
        margin-left: auto;
        min-width: 0;
        white-space: normal;
    }

    .platform-pick-main {
        order: 3;
        flex: 1 1 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .platform-pick-rating {
        min-width: 0;
    }

    .platform-pick-specs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px 16px;
    }

    .platform-pick-specs > div {
        padding-left: 0;
        border-left: none;
        padding-bottom: 8px;
        border-bottom: 1px solid #f0f4f8;
    }

    .platform-pick-specs > div:nth-child(odd) {
        padding-right: 12px;
        border-right: 1px solid #f0f4f8;
    }

    .platform-pick-specs > div:nth-last-child(-n+2) {
        border-bottom: none;
        padding-bottom: 0;
    }
}

@media (max-width: 520px) {
    .platform-pick-row {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }

    .platform-pick-brand,
    .platform-pick-cta,
    .platform-pick-main {
        order: unset;
        margin-left: 0;
    }

    .platform-pick-brand {
        width: 100%;
        border-right: none;
        padding: 0 12px 0 36px;
        justify-content: center;
    }

    .platform-pick-brand img {
        margin: 0 auto;
    }

    .platform-pick-cta {
        width: 100%;
    }
.platform-pick-specs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px 16px;
    }

    .platform-pick-specs > div:nth-child(odd) {
        padding-right: 12px;
        border-right: 1px solid #f0f4f8;
    }

    .platform-pick-specs > div {
        border-bottom: 1px solid #f0f4f8;
        padding-bottom: 8px;
    }

    .platform-pick-specs > div:nth-last-child(-n+2) {
        border-bottom: none;
        padding-bottom: 0;
    }
}
.table-responsive {
    overflow-x: auto;
    margin: 1rem 0;
}

.table-responsive .comparison-table {
    margin: 0;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    font-size: 0.9375rem;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e1e8ed;
}

.comparison-table th,
.comparison-table td {
    padding: 12px 16px;
    text-align: left;
    vertical-align: top;
}

.comparison-table th {
    background: #f0f4f8;
    font-weight: 600;
    color: #1e272e;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    border-bottom: 2px solid #e1e8ed;
}

.comparison-table td {
    border-bottom: 1px solid #f0f4f8;
    color: #2d3436;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:nth-child(even) td {
    background: #fafbfc;
}

.comparison-table tr:hover td {
    background: #f8f9fa;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 24px 0;
}

.feature-card {
    background: #fff;
    border: 1px solid #e1e8ed;
    border-radius: 12px;
    padding: 28px;
}

.feature-card h3 {
    margin-top: 0;
    color: #0984e3;
}
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 32px 0;
}

.step-card {
    background: #fff;
    border: 1px solid #e1e8ed;
    border-radius: 12px;
    padding: 28px;
    text-align: center;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #0984e3;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

.step-card h3 {
    margin-top: 0;
}
.check-list {
    list-style: none;
    padding-left: 0;
}

.check-list li {
    margin: 0;
    padding: 8px 0 0 28px;
    position: relative;
}

.check-list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: #00b894;
    font-weight: 700;
    font-size: 16px;
}
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 24px 0;
}

.review-card {
    background: #fff;
    border: 1px solid #e1e8ed;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.review-card-head {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.review-avatar {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #0984e3;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
}

.review-avatar--sm {
    width: 36px;
    height: 36px;
    font-size: 14px;
}

.review-author {
    font-weight: 600;
    color: #1e272e;
    font-size: 14px;
    line-height: 1.3;
}

.review-city {
    font-size: 12px;
    color: #b2bec3;
}

.review-card-platform {
    font-size: 11px;
    font-weight: 600;
    color: #0984e3;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-top: 2px;
}

.review-card-stars {
    margin-left: auto;
    flex-shrink: 0;
    display: flex;
    gap: 1px;
}

.review-star {
    font-size: 14px;
    color: #dfe6e9;
    line-height: 1;
}

.review-star--on {
    color: #fdcb6e;
}

.review-text p {
    font-size: 14px;
    color: #636e72;
    margin: 0;
    line-height: 1.65;
}
.reviews-toc {
    background: #f0f4f8;
    border-radius: 8px;
    padding: 14px 18px;
    margin: 20px 0 28px;
    font-size: 0.9375rem;
}

.reviews-toc ul {
    margin: 6px 0 0;
    padding-left: 1.25rem;
    display: flex;
    flex-wrap: wrap;
    gap: 4px 24px;
}

.reviews-toc ul li {
    margin: 0;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 20px 0 32px;
}

.review-card--full {
    padding: 22px 24px;
    gap: 14px;
}

.review-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.review-author-block {
    display: flex;
    align-items: center;
    gap: 10px;
}

.review-meta-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.review-platform-badge {
    background: #e8f4fd;
    color: #0984e3;
    font-size: 12px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 4px;
}

.review-stars {
    display: flex;
    gap: 2px;
}

.review-date {
    font-size: 12px;
    color: #b2bec3;
}
.broker-overview-card {
    background: #f8f9fa;
    border: 1px solid #e1e8ed;
    border-radius: 12px;
    padding: 22px 24px;
    margin: 16px 0 8px;
}

.broker-overview-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}

.broker-overview-header img {
    max-height: 44px;
    width: auto;
    object-fit: contain;
}

.broker-overview-rating {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e272e;
}

.broker-overview-star {
    color: #fdcb6e;
    font-size: 1.2rem;
}

.broker-overview-summary {
    font-size: 0.9375rem;
    color: #4a5568;
    margin: 0 0 14px;
}

.broker-overview-specs {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    margin: 0 0 16px;
    border: 1px solid #e1e8ed;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.broker-overview-specs > div {
    padding: 10px 12px;
    border-right: 1px solid #e1e8ed;
}

.broker-overview-specs > div:last-child {
    border-right: none;
}

.broker-overview-specs dt {
    font-size: 11px;
    color: #b2bec3;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    font-weight: 600;
    margin-bottom: 4px;
}

.broker-overview-specs dd {
    font-size: 13px;
    font-weight: 600;
    color: #1e272e;
    margin: 0;
}

.broker-overview-cta {
    display: inline-block;
}
.table-stars {
    color: #fdcb6e;
    letter-spacing: 1px;
    font-size: 15px;
}
.faq-list {
    margin: 24px 0;
}

.faq-item {
    background: #fff;
    border: 1px solid #e1e8ed;
    border-radius: 8px;
    margin-bottom: 8px;
    overflow: hidden;
}

.faq-item summary {
    padding: 16px 48px 16px 20px;
    cursor: pointer;
    list-style: none;
    position: relative;
    color: #1e272e;
    transition: background 0.15s;
}
details.faq-item summary h3.faq-question {
    margin: 0;
    margin-top: 0;
    margin-bottom: 0;
    padding: 0 8px 0 0;
    font-size: 1.0625rem;
    font-weight: 600;
    line-height: 1.35;
    color: inherit;
}

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

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    font-weight: 300;
    color: #636e72;
    transition: transform 0.2s;
}

.faq-item[open] summary::after {
    content: '\2212';
}

.faq-item summary:hover {
    background: #f8f9fa;
}

.faq-answer {
    border-top: 1px solid #e1e8ed;
    padding: 0 20px;
    color: #636e72;
    font-size: 14px;
    line-height: 1.6;
}
details.faq-item .faq-answer p {
    margin: 12px 0;
}
.disclaimer-inline {
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 8px;
    padding: 16px 20px;
    font-size: 13px;
    color: #856404;
    margin-top: 24px;
}
.sidebar {
    position: sticky;
    top: 80px;
    align-self: start;
}

.sidebar-widget {
    background: #fff;
    border: 1px solid #e1e8ed;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
}

.sidebar-title {
    font-size: 16px;
    margin: 0 0 16px;
    color: #1e272e;
    padding-bottom: 12px;
    border-bottom: 2px solid #0984e3;
}

.sidebar-posts {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-post-item {
    margin: 0 0 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f4f8;
}

.sidebar-post-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.sidebar-post-item a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.sidebar-post-item a:hover .sidebar-post-title {
    color: #0984e3;
}

.sidebar-post-image {
    width: 60px;
    height: 44px;
    border-radius: 6px;
    object-fit: cover;
    flex-shrink: 0;
}

.sidebar-post-title {
    font-size: 14px;
    color: #2d3436;
    font-weight: 500;
    line-height: 1.4;
    transition: color 0.15s;
}

.sidebar-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-links li {
    margin: 0 0 8px;
}

.sidebar-links a {
    font-size: 14px;
    display: block;
    padding: 6px 0;
}

.sidebar-brokers {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-broker {
    margin: 0 0 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid #f0f4f8;
}

.sidebar-broker:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.sidebar-broker-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

.sidebar-broker-link:hover {
    text-decoration: none;
}

.sidebar-broker-link:hover .sidebar-broker-rating {
    color: #0984e3;
}

.sidebar-broker-link:hover .sidebar-broker-deposit {
    color: #2d3436;
}

.sidebar-broker-logo {
    flex-shrink: 0;
    width: 100px;
    height: 32px;
    object-fit: contain;
    object-position: left center;
}

.sidebar-broker-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    flex: 1;
}

.sidebar-broker-rating {
    font-size: 13px;
    font-weight: 600;
    color: #1e272e;
    transition: color 0.15s;
}

.sidebar-broker-star {
    color: #f39c12;
}

.sidebar-broker-rating-hint {
    font-weight: 500;
    color: #636e72;
    font-size: 12px;
}

.sidebar-broker-deposit {
    font-size: 12px;
    color: #636e72;
    line-height: 1.35;
}

.sidebar-broker-foot {
    margin: 14px 0 0;
    padding-top: 12px;
    border-top: 1px solid #f0f4f8;
    font-size: 13px;
}

.sidebar-broker-foot a {
    color: #0984e3;
    font-weight: 500;
    text-decoration: none;
}

.sidebar-broker-foot a:hover {
    text-decoration: none;
    color: #0652dd;
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.blog-card {
    background: #fff;
    border: 1px solid #e1e8ed;
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.2s;
}

.blog-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.blog-card-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.blog-card-body {
    padding: 20px;
}

.blog-card-category {
    display: inline-block;
    background: #e8f4fd;
    color: #0984e3;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 8px;
}

.blog-card-title {
    font-size: 17px;
    margin: 0 0 8px;
}

.blog-card-title a {
    color: #1e272e;
    text-decoration: none;
}

.blog-card-title a:hover {
    color: #0984e3;
}

.blog-card-excerpt {
    font-size: 14px;
    color: #636e72;
    margin-bottom: 12px;
}

.blog-card-link {
    font-size: 14px;
    font-weight: 600;
}
.blog-article {}

.blog-article-hero {
    margin: 0 0 1.25rem;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e1e8ed;
    background: #f0f4f8;
}

.blog-article-hero img {
    display: block;
    width: 100%;
    height: auto;
    vertical-align: middle;
}

.blog-inline-figure {
    margin: 1rem 0 1.25rem;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e1e8ed;
    background: #fafbfc;
}

.blog-inline-figure img {
    display: block;
    width: 100%;
    height: auto;
    vertical-align: middle;
}

.page-content .blog-inline-figure figcaption {
    margin: 0;
    padding: 10px 14px 12px;
    font-size: 0.8125rem;
    color: #636e72;
    line-height: 1.45;
    background: #fff;
    border-top: 1px solid #f0f4f8;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e1e8ed;
}

.article-category {
    display: inline-block;
    background: #e8f4fd;
    color: #0984e3;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 4px;
}

.article-meta time {
    font-size: 13px;
    color: #636e72;
}
.author-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: #f0f4f8;
    border-radius: 12px;
    padding: 24px;
    margin: 20px 0;
}

.author-info h3 {
    margin: 0 0 8px;
}

.author-info p {
    font-size: 14px;
    color: #636e72;
    margin: 0;
}

body.page-404 {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
}

body.page-404 > .site-header,
body.page-404 > .breadcrumbs-bar {
    flex-shrink: 0;
}

body.page-404 > .section-404 {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: clamp(32px, 8vh, 80px) 0 clamp(40px, 6vh, 64px);
    box-sizing: border-box;
}

body.page-404 > .site-footer {
    flex-shrink: 0;
    margin-top: 0;
}

.section-404 {
    text-align: center;
}

.error-404 {
    font-size: 120px;
    font-weight: 800;
    color: #dfe6e9;
    margin-bottom: 16px;
    line-height: 1;
}

.error-404-lead {
    font-size: 18px;
    color: #636e72;
    margin-bottom: 32px;
}

.error-404-links {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}
.site-footer {
    background: #1e272e;
    color: #b2bec3;
    padding: 44px 0 40px;
    margin-top: 56px;
}

.site-footer a {
    text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
    text-decoration: none;
}

.footer-top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 20px 32px;
    align-items: start;
    padding-bottom: 22px;
    margin-bottom: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    text-align: left;
}

.footer-about {
    min-width: 0;
}

.footer-tagline {
    font-size: 15px;
    line-height: 1.6;
    color: #dfe6e9;
    margin: 0;
    max-width: 62ch;
}

.footer-social {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: flex-end;
    flex-shrink: 0;
    margin: 0;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 8px;
    width: 100%;
    margin: 0;
    padding: 18px 0 22px;
    box-sizing: border-box;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-nav a {
    color: #cfd8dc;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 8px;
    transition: color 0.15s, background 0.15s;
}

.footer-nav a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    color: #dfe6e9;
    transition: background 0.2s, color 0.2s, transform 0.15s;
}

.footer-social-link:hover {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    transform: translateY(-1px);
}

.footer-social-link:focus-visible {
    outline: 2px solid #74b9ff;
    outline-offset: 2px;
}

.footer-social-link svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.footer-social-link--vk:hover {
    color: #fff;
    background: rgba(0, 119, 255, 0.35);
}

.footer-social-link--telegram:hover {
    color: #fff;
    background: rgba(42, 171, 238, 0.35);
}

.footer-disclaimer {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 18px 20px;
    margin: 24px 0;
}

.footer-disclaimer p {
    font-size: 12px;
    line-height: 1.65;
    margin: 0;
    color: #b2bec3;
}

.footer-bottom {
    display: grid;
    gap: 14px 32px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: left;
}

.footer-copyright {
    font-size: 14px;
    font-weight: 600;
    color: #ecf0f1;
    margin: 0;
    letter-spacing: 0.02em;
}

.footer-contact {
    font-size: 13px;
    margin: 0;
    color: #95a5a6;
}

.footer-contact a {
    color: #74b9ff;
}

.footer-contact a:hover {
    color: #a29bfe;
}

.footer-info {
    font-size: 12px;
    line-height: 1.65;
    color: #95a5a6;
    margin: 0;
    max-width: 85ch;
}

@media (max-width: 560px) {
    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-social {
        justify-content: flex-start;
    }
}

@media (min-width: 768px) {
    .footer-nav {
        gap: 8px 10px;
        justify-content: flex-start;
    }

    .footer-bottom {
        grid-template-columns: 1fr auto;
        align-items: baseline;
    }

    .footer-info {
        grid-column: 1 / -1;
    }

    .footer-contact {
        text-align: right;
    }
}
.contact-block {
    background: #f0f4f8;
    border-radius: 8px;
    padding: 20px;
    margin: 16px 0;
}
.education-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 24px 0;
}

.edu-card {
    background: #fff;
    border: 1px solid #e1e8ed;
    border-radius: 10px;
    padding: 22px 20px;
}

.edu-card h3 {
    font-size: 1.05rem;
    color: #0984e3;
    margin: 0 0 12px;
}

.edu-card ul {
    margin: 0;
    padding-left: 1.25rem;
    font-size: 0.9375rem;
    color: #4a5568;
}

.edu-card ul li {
    margin: 6px 0;
}
.blog-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 20px 0 28px;
}

.blog-preview-card {
    background: #fff;
    border: 1px solid #e1e8ed;
    border-radius: 10px;
    padding: 22px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.blog-preview-card h3 {
    font-size: 1rem;
    margin: 0;
    line-height: 1.4;
}

.blog-preview-card h3 a {
    color: #1e272e;
    text-decoration: none;
}

.blog-preview-card h3 a:hover {
    color: #0984e3;
}

.blog-preview-card p {
    font-size: 0.9375rem;
    color: #636e72;
    margin: 0;
    flex: 1;
}

.blog-preview-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: #0984e3;
    text-decoration: none;
}

.blog-preview-link:hover {
    text-decoration: underline;
}
@media (max-width: 991px) {
    .header-inner {
        position: relative;
    }

    .logo-block,
    .navbar-toggle-wrapper {
        position: relative;
        z-index: 1001;
    }

    .navbar-toggle-wrapper {
        display: flex;
    }

    .navigation {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1000;
        align-items: stretch;
        justify-content: flex-end;
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        transition:
            opacity 0.32s ease,
            visibility 0s linear 0.32s;
    }

    .navigation.is-open {
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
        transition:
            opacity 0.32s ease,
            visibility 0s;
    }

    .nav-select {
        background: #fff;
        width: 300px;
        max-width: 85%;
        height: 100%;
        overflow-y: auto;
        padding: 20px 0;
        box-shadow: -4px 0 24px rgba(0,0,0,0.1);
        transform: translateX(100%);
        transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .navigation.is-open .nav-select {
        transform: translateX(0);
    }

    .nav-menu {
        flex-direction: column;
        gap: 0;
    }

    .nav-menu a {
        padding: 12px 20px;
        border-radius: 0;
        font-size: 15px;
    }

    .sub-menu {
        position: static;
        display: none;
        border: none;
        box-shadow: none;
        border-radius: 0;
        padding: 0;
        min-width: 0;
        background: #f8f9fa;
    }

    .sub-menu.is-open {
        display: block;
    }

    .sub-menu a {
        padding-left: 36px;
    }

    .submenu-toggle {
        display: block;
        position: absolute;
        right: 12px;
        top: 8px;
        width: 32px;
        height: 32px;
        cursor: pointer;
    }

    .content-with-sidebar {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: static;
    }

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

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

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

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

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

    .blog-preview-grid {
        grid-template-columns: 1fr;
    }

    .broker-overview-specs {
        grid-template-columns: repeat(2, 1fr);
    }

    .broker-overview-specs > div:nth-child(2) {
        border-right: none;
    }

    .broker-overview-specs > div:nth-child(even) {
        border-right: none;
    }

    .hero-content h1 {
        font-size: 1.75rem;
    }

    .hero-section {
        padding: 40px 0;
    }

    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.3rem; }
    h3 { font-size: 1.15rem; }
}

@media (max-width: 991px) and (prefers-reduced-motion: reduce) {
    .navigation,
    .navigation.is-open,
    .nav-select {
        transition: none;
    }
}

@media (max-width: 600px) {
    .header-inner {
        padding: 8px 0;
    }

    img.logo {
        max-width: 150px;
        max-height: 36px;
    }

    .page-content {
        padding: 20px;
    }

    .section {
        padding: 36px 0;
    }

    .hero-section {
        padding: 32px 0;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    h1 { font-size: 1.5rem; }
    h2 { font-size: 1.2rem; }

    .hero-lead {
        font-size: 1rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 10px 12px;
        font-size: 13px;
    }

    .broker-overview-specs {
        grid-template-columns: 1fr 1fr;
    }

    .broker-overview-specs > div {
        border-right: none;
        border-bottom: 1px solid #e1e8ed;
    }

    .broker-overview-specs > div:last-child {
        border-bottom: none;
    }

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

    .error-404 {
        font-size: 80px;
    }
}
.rating-page-lede {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: #3d4852;
    margin: 0 0 28px;
    padding: 22px 26px;
    background: linear-gradient(135deg, #f8fafc 0%, #eef2f6 100%);
    border-radius: 12px;
    border-left: 4px solid #0984e3;
    box-shadow: 0 2px 12px rgba(30, 39, 46, 0.06);
}

.rating-page-toc {
    background: #fff;
    border: 1px solid #e1e8ed;
    border-radius: 12px;
    padding: 18px 22px 20px;
    margin: 0 0 32px;
    box-shadow: 0 1px 4px rgba(30, 39, 46, 0.04);
}

.rating-page-toc-title {
    display: block;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #636e72;
    margin-bottom: 10px;
}

.rating-page-toc ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 24px;
}

.rating-page-toc li {
    margin: 0;
    padding: 0;
    position: relative;
    padding-left: 16px;
    font-size: 0.9375rem;
}

.rating-page-toc li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #0984e3;
    opacity: 0.7;
}

.rating-place-block {
    background: #fff;
    border: 1px solid #e1e8ed;
    border-radius: 14px;
    margin: 0 0 20px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(30, 39, 46, 0.05);
}

.rating-place-head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px 18px;
    padding: 18px 20px;
    background: #fafbfc;
    border-bottom: 1px solid #eef2f6;
}

.rating-place-num {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #0984e3;
    color: #fff;
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1;
}

.rating-place-titles {
    flex: 1 1 200px;
    min-width: 0;
}

.rating-place-name {
    margin: 0 0 4px;
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e272e;
}

.rating-place-score {
    margin: 0;
    font-size: 0.875rem;
    color: #636e72;
}

.rating-place-btn {
    flex-shrink: 0;
    margin-left: auto;
}

.rating-place-body {
    padding: 18px 20px 20px;
}

.rating-place-body p {
    margin: 0 0 12px;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #4a5568;
}

.rating-place-body p:last-child {
    margin-bottom: 0;
}

.rating-place-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    list-style: none;
    margin: 0 0 14px;
    padding: 0;
    font-size: 0.875rem;
    color: #2d3436;
}

.rating-place-specs li span {
    display: block;
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #b2bec3;
    font-weight: 600;
    margin-bottom: 2px;
}

@media (max-width: 600px) {
    .rating-page-toc ul {
        grid-template-columns: 1fr;
    }

    .rating-place-btn {
        margin-left: 0;
        width: 100%;
        text-align: center;
    }
}
.submenu-toggle-btn {
    display: none;
}

@media (max-width: 991px) {
    .menu-item-has-children {
        position: relative;
    }

    .submenu-toggle-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        right: 8px;
        top: 6px;
        width: 36px;
        height: 36px;
        cursor: pointer;
        background: none;
        border: none;
        font-size: 18px;
        color: #636e72;
        transition: transform 0.2s;
    }

    .submenu-toggle-btn.is-open {
        transform: rotate(180deg);
    }
}
.broker-criteria-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 20px 0 28px;
}

.broker-criterion {
    display: flex;
    gap: 14px;
    background: #fff;
    border: 1px solid #e1e8ed;
    border-radius: 10px;
    padding: 18px 16px;
    align-items: flex-start;
}

.broker-criterion-icon {
    font-size: 1.4rem;
    color: #00b894;
    flex-shrink: 0;
    margin-top: 2px;
}

.broker-criterion h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0 0 6px;
    color: #1a202c;
}

.broker-criterion p {
    font-size: 0.875rem;
    color: #4a5568;
    margin: 0;
    line-height: 1.5;
}
.edu-card {
    display: flex;
    gap: 14px;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.2s, border-color 0.2s;
}

.edu-card:hover {
    border-color: #0984e3;
    box-shadow: 0 4px 16px rgba(9,132,227,0.10);
    text-decoration: none;
}

.edu-card-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.edu-card-body {
    flex: 1;
}

.edu-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: #0984e3;
    margin: 0 0 6px;
}

.edu-card-desc {
    font-size: 0.875rem;
    color: #4a5568;
    margin: 0 0 8px;
    line-height: 1.5;
}

.edu-card-link {
    font-size: 0.85rem;
    color: #0984e3;
    font-weight: 600;
}

@media (max-width: 768px) {
    .broker-criteria-grid {
        grid-template-columns: 1fr;
    }
}
.team-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 20px 0 28px;
}

.team-card {
    display: flex;
    gap: 20px;
    background: #fff;
    border: 1px solid #e1e8ed;
    border-radius: 12px;
    padding: 22px 20px;
    align-items: flex-start;
}

.team-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0984e3, #00b894);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    letter-spacing: 0.02em;
}

.team-info h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 4px;
}

.team-role {
    font-size: 0.85rem;
    color: #0984e3;
    font-weight: 600;
    margin-bottom: 8px;
}

.team-info p {
    font-size: 0.9rem;
    color: #4a5568;
    margin: 0;
    line-height: 1.6;
}
.contacts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 24px 0 32px;
}

.contact-card {
    display: flex;
    gap: 16px;
    background: #f0f9ff;
    border: 1px solid #bde0ff;
    border-radius: 12px;
    padding: 20px 18px;
    align-items: flex-start;
}

.contact-card-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-card-body h2 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 6px;
}

.contact-card-body p {
    font-size: 0.875rem;
    color: #4a5568;
    margin: 0 0 8px;
}

.contact-link {
    font-size: 1rem;
    font-weight: 700;
    color: #0984e3;
    text-decoration: none;
    word-break: break-all;
}

.contact-link:hover {
    text-decoration: underline;
}

.contact-note {
    background: #fffbea;
    border-left: 4px solid #f6c90e;
    border-radius: 0 8px 8px 0;
    padding: 14px 18px;
    margin: 24px 0;
    font-size: 0.9rem;
    color: #4a5568;
}

.contact-note p {
    margin: 0;
}

@media (max-width: 768px) {
    .team-card {
        flex-direction: column;
        align-items: flex-start;
    }

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