:root {
    --primary: #4f46e5;
    --secondary: #7c3aed;
    --success: #059669;
    --danger: #dc2626;
    --warning: #d97706;
    --dark: #1f2937;
    --light: #f9fafb;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-600: #4b5563;
    --gray-800: #1f2937;
    --gradient: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

* { box-sizing: border-box; }

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: var(--light);
    margin: 0;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 1rem; }

/* === HEADER === */
.header-top {
    background: var(--dark);
    color: var(--white);
    padding: 0.5rem 0;
    font-size: 0.875rem;
}

.main-header {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    padding: 1rem 0;
    box-shadow: var(--shadow);
}

.logo {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
}

.main-nav a {
    color: var(--dark);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    text-decoration: none;
}

.main-nav a:hover, .main-nav a.active {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-1px);
}

/* === LANGUAGE SWITCHER === */
.language-switcher { display: flex; gap: 0.5rem; }

.lang-link {
    color: #9ca3af;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.2s ease;
    text-decoration: none;
    font-size: 0.875rem;
}

.lang-link:hover {
    color: var(--white);
    background: rgba(255,255,255,0.1);
}

.lang-link.active {
    color: var(--white);
    background: var(--primary);
}

.hero-section {
    background: var(--gradient);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--hero-bg) center/cover;
    opacity: 0.2;
    z-index: 0;
}

.display-5, .display-6 {
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.lead {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

/* === BUTTONS === */
.btn {
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    border: none;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-outline-primary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-lg { padding: 1rem 2rem; font-size: 1.1rem; }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.875rem; }

/* === CARDS === */
.card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.card-body { padding: 1.5rem; }
.card-title { font-weight: 700; color: var(--dark); margin-bottom: 1rem; }
.card-text { color: var(--gray-600); }

/* === SECTIONS === */
.py-5 { padding: 3rem 0; }
.py-4 { padding: 2rem 0; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }

.bg-light { background: var(--gray-50) !important; }
.bg-white { background: var(--white) !important; }
.bg-primary { background: var(--primary) !important; }

.text-primary { color: var(--primary) !important; }
.text-white { color: var(--white) !important; }
.text-muted { color: var(--gray-600) !important; }
.text-center { text-align: center; }

/* === GRID === */
.row { display: flex; flex-wrap: wrap; margin: 0 -0.75rem; }
.col, .col-md-3, .col-md-4, .col-md-6, .col-md-9, .col-lg-3, .col-lg-4, .col-lg-8, .col-lg-9 {
    padding: 0 0.75rem;
    flex: 1;
}

@media (min-width: 768px) {
    .col-md-3 { flex: 0 0 25%; }
    .col-md-4 { flex: 0 0 33.333333%; }
    .col-md-6 { flex: 0 0 50%; }
    .col-md-9 { flex: 0 0 75%; }
}

@media (min-width: 992px) {
    .col-lg-3 { flex: 0 0 25%; }
    .col-lg-4 { flex: 0 0 33.333333%; }
    .col-lg-8 { flex: 0 0 66.666667%; }
    .col-lg-9 { flex: 0 0 75%; }
}

.g-4 > * { margin-bottom: 1.5rem; }
.d-flex { display: flex; }
.align-items-center { align-items: center; }
.justify-content-center { justify-content: center; }
.h-100 { height: 100%; }

/* === FOOTER === */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer h6, .footer .footer-heading { color: var(--white); font-weight: 700; margin-bottom: 1rem; font-size: 1rem; }

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

.footer-links li { margin-bottom: 0.5rem; }

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover { color: var(--white); }

.footer-bottom {
    border-top: 1px solid var(--gray-600);
    padding-top: 1rem;
    margin-top: 2rem;
    color: #9ca3af;
}

/* === RESPONSIVE === */
@media (max-width: 767.98px) {
    .container { padding: 0 1rem; }
    .main-nav a { display: block; margin-bottom: 0.5rem; }
    .hero-section { padding: 2rem 0; }
    .display-5, .display-6 { font-size: 2rem; }
    .py-5 { padding: 2rem 0; }

    .footer-links a, .lang-link, .nav-link {
        min-height: 44px;
        display: flex;
        align-items: center;
        padding: 12px 16px;
    }
}

/* === UTILITIES === */
.shadow-sm { box-shadow: var(--shadow); }
.rounded { border-radius: 8px; }
.fw-bold { font-weight: 700; }
.small { font-size: 0.875rem; }

.d-none { display: none; }
@media (min-width: 768px) { .d-md-block { display: block; } }

/* === ANIMATIONS === */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.card { animation: fadeInUp 0.6s ease forwards; }

/* === FOCUS STATES === */
.btn:focus, input:focus, textarea:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* === MOBILE FIXES === */
@media (max-width: 767.98px) {
    /* Статьи в 1 столбец */
    .col-md-6, .col-xl-4 { flex: 0 0 100% !important; }

    /* Адаптивная навигация */
    .main-nav { display: none; }
    .main-nav.show {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: var(--shadow);
        padding: 1rem;
    }
    .main-nav a { display: block; margin-bottom: 0.5rem; }

    /* Хлебные крошки */
    .breadcrumb { font-size: 0.75rem; flex-wrap: wrap; }
    .breadcrumb-item { max-width: 120px; overflow: hidden; text-overflow: ellipsis; }
}

@media (max-width: 767.98px) {
    /* About page в 1 столбец */
    .col-lg-8, .col-lg-4, .col-lg-9, .col-lg-3 {
        flex: 0 0 100% !important;
    }
}

.footer {
    background: var(--dark);
    color: var(--white);
    padding: 3rem 0 1rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--footer-bg) center/cover;
    opacity: 0.1;
    z-index: 0;
}

.footer > .container { position: relative; z-index: 1; }

.footer h6, .footer .footer-heading { color: var(--white); font-weight: 700; margin-bottom: 1rem; font-size: 1rem; }

.footer-links a {
    color: #d1d5db; /* светло-серый вместо темного */
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover { color: var(--white); }

.footer-bottom {
    border-top: 1px solid var(--gray-600);
    padding-top: 1rem;
    margin-top: 2rem;
    color: #d1d5db; /* светло-серый */
}

.footer-disclaimer small {
    color: #e5e7eb !important; /* светлый серый для дисклеймера */
}

.footer-contact p {
    color: #d1d5db; /* светло-серый для контактов */
}

/* === MAP STYLES === */
#map {
    border-radius: 8px;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
    background: #f8f9fa;
}

.leaflet-popup-content {
    font-size: 0.9rem;
    line-height: 1.4;
}

.leaflet-popup-content .btn {
    font-size: 0.8rem;
    padding: 0.25rem 0.5rem;
}

/* ATM Card hover effects */
.atm-card {
    transition: all 0.2s ease;
    border: 1px solid var(--gray-200);
}

.atm-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

/* ATM Feature badges */
.atm-card .badge {
    font-size: 0.7rem;
    font-weight: 500;
}

/* Loading state */
.spinner-border-sm {
    width: 1rem;
    height: 1rem;
}

/* Map loading placeholder */
#map:empty::before {
    content: 'Loading map...';
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--gray-600);
    font-style: italic;
}

/* Mobile map adjustments */
@media (max-width: 767.98px) {
    #map {
        height: 300px !important;
    }

    .leaflet-popup-content {
        font-size: 0.8rem;
    }

    .atm-card .badge {
        font-size: 0.65rem;
    }
}

/* ATM list improvements */
.list-group-item-action:hover {
    background-color: var(--gray-50);
    border-color: var(--primary);
}

.badge.bg-primary, .badge.bg-success {
    font-weight: 600;
}

.bank-description {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 12px 16px;
    color: #374151;
    line-height: 1.6;
    font-size: 15px;
}

/* Мобильные устройства */
@media (max-width: 768px) {
    .bank-description {
        padding: 8px 12px;
        font-size: 14px;
        border-radius: 6px;
    }
}

/* Стили для HTML тегов внутри */
.bank-description h1 {
    color: #1f2937;
    margin-bottom: 12px;
    font-size: 24px;
    font-weight: 600;
}

.bank-description h2 {
    color: #374151;
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 600;
}

.bank-description h3 {
    color: #4b5563;
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: 500;
}

.bank-description p {
    margin-bottom: 12px;
}

.bank-description ul {
    padding-left: 20px;
    margin-bottom: 12px;
}

.bank-description li {
    margin-bottom: 4px;
}

/* Мобильные размеры для заголовков */
@media (max-width: 768px) {
    .bank-description h1 {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .bank-description h2 {
        font-size: 18px;
        margin-bottom: 6px;
    }

    .bank-description h3 {
        font-size: 16px;
        margin-bottom: 4px;
    }

    .bank-description p {
        margin-bottom: 8px;
    }

    .bank-description ul {
        padding-left: 16px;
        margin-bottom: 8px;
    }
}

/* === RTL SUPPORT === */
[dir="rtl"] {
    text-align: right;
}

[dir="rtl"] .main-nav a {
    margin-left: 0;
    margin-right: 0.5rem;
}

[dir="rtl"] .language-switcher {
    flex-direction: row-reverse;
}

[dir="rtl"] .offer-content {
    flex-direction: row-reverse;
}

[dir="rtl"] .offer-logo {
    margin-right: 0;
    margin-left: 15px;
}

[dir="rtl"] .nav-prev {
    right: 8px;
    left: auto;
}

[dir="rtl"] .nav-next {
    left: 8px;
    right: auto;
}

[dir="rtl"] .nav-prev:before {
    content: "›";
}

[dir="rtl"] .nav-next:before {
    content: "‹";
}

/* WCAG AA contrast overrides for Bootstrap defaults */
a { color: #0a58ca; }
a:hover { color: #084298; }
.text-primary { color: #0a58ca !important; }
.text-muted { color: #595d61 !important; }
.btn-outline-primary { color: #0a58ca; border-color: #0a58ca; }
.btn-outline-info { color: #087990; }
.btn-outline-warning { color: #997404; }
.btn-outline-danger { color: #b02a37; }
.btn-outline-success { color: #146c43; }
.breadcrumb-item a { color: #0a58ca; }
.table-of-contents a { color: #0a58ca; }

[dir="rtl"] .card-body .d-flex {
    flex-direction: row-reverse;
}

[dir="rtl"] .breadcrumb-item + .breadcrumb-item::before {
    float: left;
    padding-right: 0.5rem;
    padding-left: 0;
    content: "‹";
}

[dir="rtl"] .breadcrumb-item:last-child::after {
    content: "";
}

[dir="rtl"] .breadcrumb {
    flex-direction: row-reverse;
}

/* === RTL INPUT GROUPS === */
[dir="rtl"] .input-group {
    flex-direction: row-reverse;
}

[dir="rtl"] .input-group .form-control {
    border-radius: 0.375rem 0 0 0.375rem !important;
}

[dir="rtl"] .input-group .btn {
    border-radius: 0 0.375rem 0.375rem 0 !important;
}

[dir="rtl"] .input-group-text {
    border-radius: 0 0.375rem 0.375rem 0 !important;
}

/* RTL Search input group */
[dir="rtl"] .input-group {
    flex-direction: row-reverse;
}

[dir="rtl"] .input-group .form-control {
    border-top-left-radius: 0.375rem !important;
    border-bottom-left-radius: 0.375rem !important;
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

[dir="rtl"] .input-group .btn {
    border-top-right-radius: 0.375rem !important;
    border-bottom-right-radius: 0.375rem !important;
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}

/* RTL Article cards fixes */
[dir="rtl"] .article-card .d-flex.align-items-center.mb-3 {
    flex-direction: row-reverse;
    justify-content: space-between;
}

[dir="rtl"] .article-card .badge.me-2 {
    margin-right: 0 !important;
    margin-left: 0.5rem !important;
    order: 2;
}

[dir="rtl"] .article-card .reading-time {
    order: 3;
}

[dir="rtl"] .article-card .ms-auto {
    margin-left: 0 !important;
    margin-right: 0 !important;
    order: 1;
}

[dir="rtl"] .article-card .d-flex.justify-content-between.align-items-center.mt-auto {
    flex-direction: row-reverse;
}

[dir="rtl"] .article-card .bi-arrow-right:before {
    content: "\f11e"; /* arrow-left */
}

/* ═══════════════════════════════════════════════════════
   PREMIUM VISUAL ELEMENTS - BANK ARTICLES
   ═══════════════════════════════════════════════════════ */

/* Stats Premium Block */
.stats-premium {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2.5rem 0;
}

.stat-box {
    background: #fafafa;
    border-left: 3px solid #000;
    padding: 2rem;
}

.stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 0.75rem;
    color: #000;
}

.stat-desc {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #666;
}

/* Elegant Table */
.table-elegant {
    margin: 2.5rem 0;
    border: 1px solid #e0e0e0;
    overflow-x: auto;
}

.table-elegant table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.table-elegant thead {
    background: #000;
    color: #fff;
}

.table-elegant th {
    padding: 1rem 1.25rem;
    text-align: left;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

.table-elegant td {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #e0e0e0;
    vertical-align: top;
}

.table-elegant .highlight-row {
    background: #f5f5f5;
}

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

/* Pros/Cons Split */
.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin: 2.5rem 0;
}

.pros-side,
.cons-side {
    padding: 0;
}

.side-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #000;
}

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

.clean-list li {
    margin-bottom: 0.9rem;
    padding-left: 1.75rem;
    position: relative;
    line-height: 1.6;
}

.clean-list li:before {
    content: "—";
    position: absolute;
    left: 0;
    font-weight: 600;
    color: #333;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.feature-card {
    text-align: center;
    padding: 2rem 1.5rem;
    border: 1px solid #e0e0e0;
    background: #fff;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-detail {
    font-size: 0.8rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.feature-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 300;
    color: #000;
}

/* Metrics Grid */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin: 2.5rem 0;
    border: 1px solid #000;
}

.metric-item {
    padding: 1.5rem 1rem;
    text-align: center;
    border-right: 1px solid #e0e0e0;
}

.metric-item:last-child {
    border-right: none;
}

.metric-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #666;
    margin-bottom: 0.75rem;
}

.metric-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: #000;
}

/* Alert Box */
.alert-box {
    margin: 2.5rem 0;
    padding: 2rem;
    border-left: 4px solid #000;
    background: #fafafa;
}

.alert-box.alert-warning {
    border-left-color: #dc3545;
}

.alert-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #000;
}

.alert-text {
    line-height: 1.7;
    color: #333;
}

/* Calculator Premium */
.calc-premium {
    margin: 2.5rem 0;
    padding: 2.5rem;
    background: #fafafa;
    border: 1px solid #e0e0e0;
}

.calc-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.75rem;
    text-align: center;
    color: #000;
}

.calc-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.calc-field label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
    color: #333;
}

.calc-field input {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid #e0e0e0;
    font-size: 1rem;
    background: #fff;
}

.calc-field input:focus {
    outline: none;
    border-color: #000;
}

.calc-field input[readonly] {
    background: #f0f0f0;
    color: #666;
}

.calc-btn {
    width: 100%;
    padding: 1.1rem;
    background: #000;
    color: #fff;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}

.calc-btn:hover {
    background: #333;
}

.calc-result {
    margin-top: 1.75rem;
}

.calc-results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.calc-result-item {
    text-align: center;
    padding: 1.5rem;
    background: #fff;
    border: 1px solid #e0e0e0;
}

.result-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: #000;
}

.result-label {
    font-size: 0.75rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.calc-error {
    text-align: center;
    padding: 1rem;
    background: #fff3f3;
    border: 1px solid #dc3545;
    color: #dc3545;
}

/* ═══════════════════════════════════════════════════════
   MOBILE RESPONSIVE
   ═══════════════════════════════════════════════════════ */

@media (max-width: 991px) {
    .stats-premium {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

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

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

    .metric-item:nth-child(2) {
        border-right: none;
    }
}

@media (max-width: 767px) {
    .pros-cons {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .metrics-grid {
        grid-template-columns: 1fr;
        border: none;
    }

    .metric-item {
        border: 1px solid #000;
        border-right: 1px solid #000;
        margin-bottom: -1px;
    }

    .calc-inputs {
        grid-template-columns: 1fr;
    }

    .calc-results-grid {
        grid-template-columns: 1fr;
    }

    .stat-num {
        font-size: 2rem;
    }

    .result-num {
        font-size: 1.4rem;
    }
}

/* RTL Support for Arabic */
[dir="rtl"] .stat-box {
    border-left: none;
    border-right: 3px solid #000;
}

[dir="rtl"] .alert-box {
    border-left: none;
    border-right: 4px solid #000;
}

[dir="rtl"] .alert-box.alert-warning {
    border-right-color: #dc3545;
}

[dir="rtl"] .clean-list li {
    padding-left: 0;
    padding-right: 1.75rem;
}

[dir="rtl"] .clean-list li:before {
    left: auto;
    right: 0;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}
.product-card {
    padding: 1.5rem;
    border: 1px solid #dee2e6;
    border-radius: .5rem;
    text-align: center;
}

.highlight-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.highlight-icon {
    font-size: 2rem;
    color: #0d6efd;
}

.highlight-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.highlight-text {
    color: #6c757d;
    margin: 0;
}