/* ========================================
   Travel Currency Guide - Styles
   ======================================== */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #5880d9;
    --primary-dark: #3f66c4;
    --secondary-color: #10b981;
    --accent-color: #f59e0b;
    --text-color: #1f2937;
    --text-light: #6b7280;
    --background: #ffffff;
    --background-light: #f9fafb;
    --border-color: #e5e7eb;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --info: #3b82f6;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background);
    overflow-x: hidden;
}

main {
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 700;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    margin-top: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Header and Navigation */
header {
    background-color: var(--background);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo a:hover {
    text-decoration: none;
    opacity: 0.9;
}

.logo-img {
    height: 75px;
    width: auto;
    display: block;
}

.logo-icon {
    font-size: 2.25rem;
    line-height: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.logo-text {
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--primary-color);
}

.logo h1 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-color);
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    text-decoration: none;
}

/* Nav dropdown */
.nav-dropdown {
    position: relative;
}
.nav-dropdown-toggle {
    cursor: pointer;
}
.nav-dropdown-arrow {
    font-size: 0.65em;
    margin-left: 0.15em;
    display: inline-block;
    transition: transform 0.2s;
}
ul.nav-dropdown-menu,
.nav-menu ul.nav-dropdown-menu,
.nav-menu .nav-dropdown ul.nav-dropdown-menu {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    min-width: 170px;
    padding: 0.4rem 0;
    z-index: 1000;
    list-style: none !important;
    margin: 0;
}
.nav-dropdown-menu li,
.nav-menu .nav-dropdown-menu li {
    padding: 0;
    border-bottom: none;
    list-style: none !important;
}
.nav-dropdown-menu li a,
.nav-menu .nav-dropdown-menu li a {
    display: block;
    padding: 0.55rem 1rem;
    font-size: 0.9rem;
    color: var(--text-color);
    white-space: nowrap;
    border-bottom: none;
}
.nav-dropdown-menu li a:hover {
    background: #f1f5f9;
    color: var(--primary-color);
}
.nav-dropdown:hover > ul.nav-dropdown-menu {
    display: block !important;
}
.nav-dropdown:hover .nav-dropdown-arrow {
    transform: rotate(180deg);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.92) 0%, rgba(118, 75, 162, 0.92) 100%),
                url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?w=1600&q=80') center/cover;
    color: white;
    padding: 3rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

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

.hero h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.hero .subtitle {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.page-hero {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.92) 0%, rgba(30, 64, 175, 0.92) 100%),
                url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?w=1600&q=80') center/cover;
    color: white;
    padding: 3rem 0;
    height: 300px;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.page-hero .container {
    position: relative;
    z-index: 1;
    width: 100%;
}

.page-hero h1 {
    margin-bottom: 0.5rem;
}

.page-hero .subtitle {
    font-size: 1.1rem;
    opacity: 0.95;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    text-decoration: none;
}

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

.btn-secondary:hover {
    background-color: transparent;
    color: white;
    text-decoration: none;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* Features Section */
.features {
    padding: 4rem 0;
    background-color: var(--background-light);
}

.features h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

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

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.learn-more {
    display: inline-block;
    margin-top: 1rem;
    color: var(--primary-color);
    font-weight: 600;
}

/* Quick Tips Section */
.quick-tips {
    padding: 4rem 0;
}

.quick-tips h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.tip {
    padding: 1.5rem;
    background-color: var(--background-light);
    border-left: 4px solid var(--secondary-color);
    border-radius: 0.25rem;
}

.tip h4 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.cta-section h2 {
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Content Section */
.content-section {
    padding: 3rem 0;
}

.content-section article {
    max-width: 900px;
    margin: 0 auto;
}

/* Table of Contents */
.table-of-contents {
    background-color: var(--background-light);
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-bottom: 2rem;
    border: 1px solid var(--border-color);
}

.table-of-contents h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.table-of-contents ul {
    list-style: none;
}

.table-of-contents li {
    margin-bottom: 0.5rem;
}

.table-of-contents a {
    color: var(--text-color);
}

.table-of-contents a:hover {
    color: var(--primary-color);
}

/* Info Boxes */
.info-box,
.tips-box,
.warning-box,
.featured-service,
.danger-list {
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin: 2rem 0;
    border-left: 4px solid;
}

.info-box {
    background-color: #eff6ff;
    border-left-color: var(--info);
}

.tips-box {
    background-color: #f0fdf4;
    border-left-color: var(--success);
}

.warning-box {
    background-color: #fffbeb;
    border-left-color: var(--warning);
}

.danger-list {
    background-color: #fef2f2;
    border-left-color: var(--danger);
}

.featured-service {
    background-color: #f0f9ff;
    border-left-color: var(--primary-color);
}

.info-box h4,
.tips-box h4,
.warning-box h4,
.danger-list h4,
.featured-service h4 {
    margin-bottom: 1rem;
}

/* Lists */
.benefit-list,
.checklist {
    margin: 1rem 0 1rem 2rem;
}

.benefit-list li,
.checklist li {
    margin-bottom: 0.75rem;
}

/* Last Updated Badge */
.last-updated {
    display: inline-block;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.page-hero .last-updated {
    opacity: 0.85;
}

/* Step Guide */
.step-guide {
    margin: 2rem 0;
}

.step-guide ol {
    counter-reset: step-counter;
    list-style: none;
}

.step-guide li {
    counter-increment: step-counter;
    margin-bottom: 2rem;
    position: relative;
    padding-left: 3rem;
}

.step-guide li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--primary-color);
    color: white;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Example Box */
.example-box {
    background-color: #f9fafb;
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin: 2rem 0;
}

.example-box h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Pros and Cons */
.pros-cons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.pros,
.cons {
    padding: 1.5rem;
    border-radius: 0.5rem;
}

.pros {
    background-color: #f0fdf4;
    border: 1px solid #86efac;
}

.cons {
    background-color: #fef2f2;
    border: 1px solid #fca5a5;
}

.pros h4,
.cons h4 {
    margin-bottom: 1rem;
}

.pros h4 {
    color: #16a34a;
}

.cons h4 {
    color: #dc2626;
}

/* Strategy Section */
.strategy-section {
    background-color: var(--background-light);
    padding: 2rem;
    border-radius: 0.5rem;
    margin: 2rem 0;
}

.strategy-section h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Comparison Table */
.comparison-table {
    margin: 2rem 0;
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

th, td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

tbody tr:hover {
    background-color: var(--background-light);
}

/* Card Strategy Grid */
.card-strategy {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.strategy-card {
    background-color: white;
    border: 2px solid var(--border-color);
    padding: 1.5rem;
    border-radius: 0.5rem;
}

.strategy-card h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.strategy-card p strong {
    color: var(--text-color);
}

/* Coverage Grid */
.coverage-grid,
.alternatives-grid,
.phone-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.coverage-item,
.alternative,
.phone-option {
    background-color: var(--background-light);
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid var(--border-color);
}

.coverage-item h4,
.alternative h4,
.phone-option h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Insurance Types */
.insurance-types,
.insurance-type {
    margin: 2rem 0;
}

.insurance-type {
    background-color: white;
    padding: 1.5rem;
    border-left: 4px solid var(--primary-color);
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.insurance-type h4 {
    color: var(--primary-color);
}

/* Next Steps */
.next-steps {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

.next-steps h3 {
    text-align: center;
    margin-bottom: 2rem;
}

.next-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.next-link {
    display: block;
    background-color: var(--background-light);
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.next-link:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

.next-title {
    display: block;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.next-desc {
    display: block;
    color: var(--text-light);
}

/* Footer */
footer {
    background-color: var(--text-color);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section a {
    color: #d1d5db;
}

.footer-section a:hover {
    color: white;
}

/* Hidden for now - remove to restore Partners section in footer */
.footer-section:last-child {
    display: none;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #4b5563;
    color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        gap: 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--border-color);
    }

    /* Mobile nav dropdown */
    ul.nav-dropdown-menu,
    .nav-menu ul.nav-dropdown-menu,
    .nav-menu .nav-dropdown ul.nav-dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        border: none;
        border-radius: 0;
        min-width: 0;
        padding: 0;
        margin: 0;
        display: none !important;
    }
    .nav-dropdown.open > ul.nav-dropdown-menu {
        display: block !important;
    }
    .nav-dropdown:hover > ul.nav-dropdown-menu {
        display: none !important;
    }
    .nav-dropdown.open:hover > ul.nav-dropdown-menu {
        display: block !important;
    }
    .nav-dropdown-menu li,
    .nav-menu .nav-dropdown-menu li {
        padding: 0;
        border-bottom: none;
        list-style: none !important;
    }
    .nav-dropdown-menu li a,
    .nav-menu .nav-dropdown-menu li a {
        padding: 0.5rem 0 0.5rem 1rem;
        font-size: 0.9rem;
    }
    .nav-dropdown.open .nav-dropdown-arrow {
        transform: rotate(180deg);
    }

    .logo-img {
        height: 48px;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .hero .subtitle {
        font-size: 1.1rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

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

    .pros-cons {
        grid-template-columns: 1fr;
    }

    table {
        font-size: 0.875rem;
    }

    th, td {
        padding: 0.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .hero,
    .page-hero {
        padding: 2rem 0;
        height: 300px;
    }

    h1 {
        font-size: 1.6rem;
    }

    .btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.9rem;
    }

    .feature-card,
    .tip {
        padding: 1.5rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.5rem 0.4rem;
        font-size: 0.8rem;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.detailed-list {
    margin: 2rem 0;
}

.detailed-list li {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.detailed-list li:last-child {
    border-bottom: none;
}

.detailed-list strong {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.detailed-list p {
    margin-top: 0.5rem;
}

.detailed-list em {
    color: var(--text-light);
    font-size: 0.95rem;
}

.key-considerations,
.use-cases,
.service-features,
.emergency-services {
    margin: 2rem 0;
}

.recommendation-section,
.practical-guide,
.final-tips {
    margin: 2rem 0;
}

.step {
    background-color: var(--background-light);
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.step h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.risk-list,
.insurance-benefits,
.country-warnings,
.backup-methods {
    margin: 1.5rem 0;
}

.final-checklist {
    background-color: var(--background-light);
    padding: 2rem;
    border-radius: 0.5rem;
    margin: 2rem 0;
}

/* ========================================
   Conversion-Focused Styles
   ======================================== */

.conversion-focused {
    max-width: 800px;
    margin: 0 auto;
}

.cta-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem;
    border-radius: 1rem;
    text-align: center;
    margin: 2rem 0;
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
}

.cta-hero h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-hero .large-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-hero .btn {
    margin: 1rem 0;
}

.cta-pulse {
    animation: pulse 2s infinite;
    font-size: 1.2rem;
    padding: 1.25rem 2.5rem;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
    }
    50% {
        box-shadow: 0 8px 24px rgba(255, 255, 255, 0.5);
    }
}

.trust-text {
    margin-top: 1rem;
    font-size: 0.95rem;
    opacity: 0.9;
}

.problem-solution {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.problem-box,
.solution-box {
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.problem-box {
    background-color: #fef2f2;
    border-left: 4px solid var(--danger);
}

.solution-box {
    background-color: #f0fdf4;
    border-left: 4px solid var(--success);
}

.problem-box h3,
.solution-box h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.how-it-works {
    background-color: var(--background-light);
    padding: 3rem 2rem;
    border-radius: 0.75rem;
    margin: 3rem 0;
}

.how-it-works h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.steps-simple {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.step-simple {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.step-simple h4 {
    margin-bottom: 0.5rem;
}

.benefits-grid {
    margin: 3rem 0;
}

.benefits-grid h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.benefit-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.benefit-card-simple {
    background-color: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card-simple:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.benefit-card-simple h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.cta-secondary {
    background-color: #f0f9ff;
    padding: 3rem 2rem;
    border-radius: 0.75rem;
    text-align: center;
    margin: 3rem 0;
    border: 2px solid var(--primary-color);
}

.cta-secondary h2 {
    margin-bottom: 1rem;
}

.cta-secondary p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.features-list {
    list-style: none;
    display: inline-block;
    text-align: left;
    margin-top: 1.5rem;
}

.features-list li {
    padding: 0.5rem 0;
    font-weight: 500;
}

.who-section {
    background-color: var(--background-light);
    padding: 2rem;
    border-radius: 0.75rem;
    margin: 3rem 0;
}

.who-section h3 {
    margin-bottom: 1rem;
}

.checklist-simple {
    list-style: none;
    margin: 1.5rem 0;
}

.checklist-simple li {
    padding: 0.75rem 0;
    font-size: 1.05rem;
}

.who-section .btn {
    margin-top: 1.5rem;
}

.learn-more-box {
    text-align: center;
    padding: 2rem;
    background-color: #fffbeb;
    border-radius: 0.5rem;
    margin: 3rem 0;
    border-left: 4px solid var(--accent-color);
}

.learn-more-box p {
    margin: 0;
    font-size: 1.1rem;
}

.learn-more-box a {
    font-weight: 600;
    color: var(--primary-color);
}

.related-simple {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

.related-simple h3 {
    text-align: center;
    margin-bottom: 2rem;
}

.related-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.related-card {
    display: block;
    background-color: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    text-decoration: none;
}

.related-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

.related-title {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.related-desc {
    display: block;
    color: var(--text-light);
    font-size: 0.95rem;
}

.options-overview {
    margin: 3rem 0;
}

.options-overview h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

.option-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.option-card {
    background-color: white;
    padding: 2rem;
    border-radius: 0.75rem;
    border: 2px solid var(--border-color);
    position: relative;
    transition: all 0.3s ease;
}

.option-card.featured {
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.2);
    transform: scale(1.05);
}

.recommended-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, var(--accent-color), #ea580c);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.option-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.option-desc {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.option-pros,
.option-cons {
    list-style: none;
    margin: 1rem 0;
}

.option-pros li,
.option-cons li {
    padding: 0.5rem 0;
    font-size: 0.95rem;
}

.option-pros li {
    color: var(--success);
}

.option-cons li {
    color: var(--text-light);
}

.option-card .btn {
    width: 100%;
    margin-top: 1.5rem;
}

.learn-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.why-online {
    background-color: var(--background-light);
    padding: 3rem 2rem;
    border-radius: 0.75rem;
    margin: 3rem 0;
}

.why-online h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.comparison-simple {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0 3rem;
}

.comparison-col {
    background-color: white;
    padding: 2rem;
    border-radius: 0.75rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.comparison-col.lose {
    border: 2px solid #fca5a5;
}

.comparison-col.win {
    border: 2px solid #86efac;
    background: linear-gradient(to bottom, white, #f0fdf4);
}

.comparison-col h4 {
    margin-bottom: 1rem;
}

.price-example {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.price-big {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 1rem 0;
}

.price-note {
    color: var(--text-light);
    font-style: italic;
}

.comparison-col.win .price-note {
    color: var(--success);
    font-weight: 600;
    font-size: 1.1rem;
}

.quick-tips-simple {
    margin: 3rem 0;
}

.quick-tips-simple h3 {
    text-align: center;
    margin-bottom: 2rem;
}

.tips-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.tip-card {
    background-color: #fffbeb;
    padding: 1.5rem;
    border-radius: 0.5rem;
    border-left: 4px solid var(--accent-color);
}

.tip-card h4 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.delivery-note {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    opacity: 0.9;
}

.why-wise {
    margin: 3rem 0;
}

.why-wise h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

.wise-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.wise-benefit {
    background-color: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.wise-benefit:hover {
    transform: translateY(-5px);
}

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

.wise-benefit h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.wise-benefit p {
    font-size: 0.95rem;
    color: var(--text-light);
}

.cost-comparison {
    background-color: var(--background-light);
    padding: 3rem 2rem;
    border-radius: 0.75rem;
    margin: 3rem 0;
}

.cost-comparison h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.comparison-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.other-options {
    margin: 3rem 0;
    padding: 2rem;
    background-color: var(--background-light);
    border-radius: 0.75rem;
}

.other-options h3 {
    text-align: center;
    margin-bottom: 2rem;
}

.simple-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.simple-card {
    background-color: white;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.simple-card h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.simple-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.card-examples {
    list-style: none;
    margin: 1rem 0 1.5rem;
}

.card-examples li {
    padding: 0.5rem 0;
    color: var(--text-color);
    border-bottom: 1px solid var(--border-color);
}

.card-examples li:last-child {
    border-bottom: none;
}

.services-intro {
    text-align: center;
    margin: 2rem 0 3rem;
}

.services-intro .large-text {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.service-card {
    background-color: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.service-card.priority {
    border-color: var(--accent-color);
    background: linear-gradient(to bottom, white, #fffbeb);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-desc {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.service-includes {
    background-color: var(--background-light);
    padding: 1rem;
    border-radius: 0.5rem;
    margin: 1.5rem 0;
}

.service-includes p strong {
    color: var(--text-color);
    font-size: 0.9rem;
}

.service-includes ul {
    list-style: none;
    margin-top: 0.75rem;
}

.service-includes li {
    padding: 0.25rem 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

.service-includes li::before {
    content: "• ";
    color: var(--primary-color);
    font-weight: bold;
}

.service-card .btn {
    width: 100%;
    margin-top: auto;
    padding-top: 1rem;
}

.travel-checklist {
    background-color: var(--background-light);
    padding: 3rem 2rem;
    border-radius: 0.75rem;
    margin: 3rem 0;
}

.travel-checklist h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

.checklist-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.checklist-col {
    background-color: white;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.checklist-col h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

/* ========================================
   Homepage Specific Styles
   ======================================== */

.solutions-section {
    padding: 4rem 0;
    background-color: var(--background-light);
    position: relative;
}

.solutions-section::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.solutions-section::after {
    content: '';
    position: absolute;
    bottom: 50px;
    right: 0;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.solutions-section h2 {
    margin-bottom: 3rem;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.solution-card {
    background-color: white;
    padding: 2.5rem 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.featured-solution {
    border: 2px solid var(--primary-color);
}

.solution-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    width: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.2);
}

.solution-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.solution-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.solution-benefit {
    background-color: var(--background-light);
    padding: 1rem;
    border-radius: 0.5rem;
    margin: 1.5rem 0;
}

.savings {
    font-weight: 700;
    color: var(--success);
    font-size: 1.1rem;
    margin: 0;
}

.solution-card .btn {
    width: 100%;
}

.value-section {
    padding: 4rem 0;
    background: linear-gradient(to bottom, white 0%, #f9fafb 100%);
    position: relative;
}

.value-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.value-problem,
.value-solution {
    padding: 2rem;
    border-radius: 0.75rem;
    position: relative;
    overflow: hidden;
}

.value-problem::before,
.value-solution::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    opacity: 0.1;
}

.value-problem {
    background-color: #fef2f2;
    border-left: 4px solid var(--danger);
}

.value-problem::before {
    background-color: var(--danger);
}

.value-solution {
    background-color: #f0fdf4;
    border-left: 4px solid var(--success);
}

.value-solution::before {
    background-color: var(--success);
}

.value-problem h3,
.value-solution h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.problem-list,
.solution-list {
    list-style: none;
    margin: 1.5rem 0;
}

.problem-list li,
.solution-list li {
    padding: 0.5rem 0;
    font-size: 1.05rem;
}

.impact-stat {
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 1.5rem;
    padding: 1rem;
    background-color: white;
    border-radius: 0.5rem;
    text-align: center;
}

.impact-stat.success {
    color: var(--success);
}

.fx-widget-section {
    padding: 3rem 0;
    background-color: var(--background);
}

.fx-widget-wrapper {
    display: flex;
    justify-content: center;
}

.fx-widget-wrapper iframe {
    border-radius: 10px;
    max-width: 100%;
}

.quick-start {
    padding: 4rem 0;
    background-color: var(--background-light);
}

.quick-start h2 {
    margin-bottom: 3rem;
}

.checklist-flow {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.checklist-item {
    background-color: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.checklist-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.checklist-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.checklist-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.checklist-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.checklist-item p {
    font-size: 0.95rem;
    color: var(--text-light);
}

.partners-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.partners-cta h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: white;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.partner-card {
    background-color: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.partner-card:hover::before {
    left: 100%;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    text-decoration: none;
}

.partner-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.partner-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.cta-text {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
}

.final-cta {
    padding: 4rem 0;
    text-align: center;
}

.final-cta h2 {
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.final-cta .cta-buttons {
    margin-top: 2rem;
}

/* ========================================
   Currency Lock Page - Clean CTAs
   ======================================== */

.lock-cta-clean {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    border-radius: 1rem;
    padding: 0;
    margin: 3rem 0;
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.3);
    overflow: hidden;
}

.lock-cta-content {
    padding: 3rem 2rem;
    text-align: center;
    color: white;
}

.lock-cta-content h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.lock-cta-subtitle {
    font-size: 1.1rem;
    opacity: 0.95;
    margin-bottom: 2rem;
}

.btn-cta-main {
    background-color: white;
    color: var(--primary-color);
    font-weight: 700;
    padding: 1.25rem 2.5rem;
    font-size: 1.2rem;
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.3);
}

.btn-cta-main:hover {
    background-color: #f9fafb;
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

.features-row {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.feature-item {
    color: white;
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.95;
}

.ideal-for-section {
    background-color: var(--background-light);
    padding: 3rem 2rem;
    border-radius: 0.75rem;
    margin: 3rem 0;
}

.ideal-for-section h3 {
    text-align: center;
    font-size: 1.75rem;
    margin-bottom: 2.5rem;
    color: var(--primary-color);
}

.ideal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.ideal-item {
    background-color: white;
    padding: 2rem 1.5rem;
    border-radius: 0.75rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.ideal-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.ideal-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.ideal-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.ideal-item strong {
    display: block;
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-top: 0.25rem;
}

/* ========================================
   Getting Currency Page - Sidebar Layout
   ======================================== */

.content-with-sidebar {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 3rem;
    align-items: start;
}

/* Method Cards */
.method-card {
    background-color: white;
    border: 2px solid var(--border-color);
    border-radius: 0.75rem;
    padding: 2.5rem;
    margin-bottom: 3rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.method-card.best-method {
    border-color: var(--success);
    background: linear-gradient(to bottom, white, #f0fdf4);
}

.method-card.gold-standard {
    border-color: var(--accent-color);
    background: linear-gradient(to bottom, white, #fffbeb);
}

.method-card.warning-method {
    border-color: #f97316;
    background: linear-gradient(to bottom, white, #fef2f2);
}

.method-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--success), #059669);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

.method-badge.gold {
    background: linear-gradient(135deg, var(--accent-color), #ea580c);
}

.method-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.method-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.method-header h2 {
    margin: 0;
    font-size: 1.6rem;
    color: var(--text-color);
    line-height: 1.3;
}

.method-tagline {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-style: italic;
}

.method-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.method-card h4 {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.method-card > p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.pros-cons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.pros,
.cons {
    background-color: var(--background-light);
    padding: 1.5rem;
    border-radius: 0.5rem;
}

.pros h4 {
    color: var(--success);
    margin-top: 0;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.cons h4 {
    color: #dc2626;
    margin-top: 0;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.pros ul,
.cons ul,
.best-practices ul,
.when-makes-sense ul,
.where-works ul,
.best-use ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pros li,
.cons li,
.best-practices li,
.when-makes-sense li,
.where-works li,
.best-use li {
    padding: 0.5rem 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.best-practices,
.when-makes-sense,
.where-works,
.best-use {
    background-color: var(--background-light);
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin: 1.5rem 0;
}

.bottom-line {
    background-color: #f0f9ff;
    border-left: 4px solid var(--primary-color);
    padding: 1.25rem;
    border-radius: 0.5rem;
    margin-top: 2rem;
    font-size: 1rem;
}

.bottom-line.warning {
    background-color: #fef2f2;
    border-left-color: #f97316;
}

.bottom-line strong {
    color: var(--text-color);
    font-weight: 700;
}

.featured-service {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 2px solid var(--primary-color);
    border-radius: 0.75rem;
    padding: 2rem;
    margin: 2rem 0;
}

.featured-service h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-top: 0;
    margin-bottom: 1rem;
}

.featured-service p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.featured-service a:not(.btn) {
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: underline;
}

.service-benefits {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
}

.service-benefits li {
    padding: 0.5rem 0;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-color);
}

.featured-service .btn {
    width: 100%;
    margin-top: 1rem;
}

.quick-comparison {
    margin: 3rem 0;
    padding: 2rem;
    background-color: var(--background-light);
    border-radius: 0.75rem;
}

.quick-comparison h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    color: var(--text-color);
}

.comparison-table {
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.comparison-table thead {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
}

.comparison-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.comparison-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
}

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

.comparison-table tbody tr:hover {
    background-color: var(--background-light);
}

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

.top-cta-box {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: white;
    padding: 2rem;
    border-radius: 0.75rem;
    text-align: center;
    margin-bottom: 3rem;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
}

.top-cta-box h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.top-cta-box p {
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.top-cta-box .btn {
    background-color: white;
    color: var(--primary-color);
    font-weight: 700;
}

.top-cta-box .btn:hover {
    background-color: #f9fafb;
    transform: translateY(-2px);
}

.sidebar-cta {
    position: relative;
}

.sticky-cta {
    position: sticky;
    top: 100px;
    background-color: white;
    border: 2px solid var(--primary-color);
    border-radius: 0.75rem;
    padding: 2rem 1.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.sidebar-badge {
    background: linear-gradient(135deg, var(--accent-color), #ea580c);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 1rem;
}

.sticky-cta h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.sidebar-text {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.sidebar-benefits {
    margin: 1.5rem 0;
}

.sidebar-benefit-item {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: var(--text-color);
}

.benefit-check {
    color: var(--success);
    font-weight: 700;
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
    display: block;
    text-align: center;
}

.sidebar-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 1rem;
    margin-bottom: 0;
}

/* ========================================
   Guide Page Styles
   ======================================== */

.guide-intro {
    text-align: center;
    margin: 2rem 0 3rem;
    padding: 2rem;
    background-color: var(--background-light);
    border-radius: 0.75rem;
}

.guide-intro .large-text {
    font-size: 1.2rem;
    color: var(--text-color);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.guide-section {
    margin: 3rem 0;
}

.guide-section h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--primary-color);
}

.guide-section h3 {
    color: var(--text-color);
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.guide-section > p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 1.25rem;
}

.example-box {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-left: 4px solid var(--primary-color);
    padding: 2rem;
    border-radius: 0.75rem;
    margin: 2rem 0;
}

.example-box h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.example-box ul {
    list-style: none;
    margin: 1rem 0;
}

.example-box li {
    padding: 0.5rem 0;
    font-size: 1rem;
}

.steps-detailed {
    margin: 2rem 0;
}

.step-detailed {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: white;
    border-radius: 0.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.step-detailed:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.step-detailed .step-number {
    flex-shrink: 0;
}

.step-content h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.step-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0;
}

.when-to-hedge {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.hedge-scenario {
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hedge-scenario.good {
    background-color: #f0fdf4;
    border: 2px solid var(--success);
}

.hedge-scenario.bad {
    background-color: #fef2f2;
    border: 2px solid #f97316;
}

.hedge-scenario h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.hedge-scenario.good h4 {
    color: var(--success);
}

.hedge-scenario.bad h4 {
    color: #f97316;
}

.hedge-scenario ul {
    list-style: none;
    margin: 0;
}

.hedge-scenario li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 1rem;
    line-height: 1.5;
}

.hedge-scenario li:last-child {
    border-bottom: none;
}

.example-detailed {
    background-color: white;
    border: 2px solid var(--border-color);
    border-radius: 0.75rem;
    padding: 2.5rem;
    margin: 2rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.example-detailed h3 {
    color: var(--primary-color);
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
}

.example-content ul {
    margin: 1rem 0 1.5rem;
}

.example-content li {
    padding: 0.5rem 0;
    font-size: 1rem;
}

.outcomes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.outcome-scenario {
    background-color: var(--background-light);
    padding: 1.5rem;
    border-radius: 0.5rem;
    border-left: 4px solid var(--primary-color);
}

.outcome-scenario h5 {
    color: var(--text-color);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.outcome-scenario p {
    margin: 0.5rem 0;
    font-size: 0.95rem;
}

.example-conclusion {
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    border-radius: 0.5rem;
    border-left: 4px solid var(--accent-color);
    font-size: 1.05rem;
}

.cost-breakdown {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.cost-item {
    background-color: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-top: 3px solid var(--primary-color);
}

.cost-item h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.cost-item p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0;
}

.risk-list {
    margin: 2rem 0;
}

.risk-item {
    background-color: #fef2f2;
    border-left: 4px solid #f97316;
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
}

.risk-item h4 {
    color: #f97316;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.risk-item p {
    color: var(--text-color);
    font-size: 0.95rem;
    margin: 0;
}

.getting-started {
    background-color: var(--background-light);
    padding: 3rem 2rem;
    border-radius: 0.75rem;
    margin: 2rem 0;
}

.getting-started h3 {
    text-align: center;
    color: var(--primary-color);
    font-size: 1.6rem;
    margin-bottom: 2rem;
}

.process-steps {
    max-width: 700px;
    margin: 0 auto;
}

.process-step {
    background-color: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--primary-color);
}

.process-step strong {
    color: var(--primary-color);
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.5rem;
}

.process-step p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

.cta-box-guide {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem 2rem;
    border-radius: 1rem;
    text-align: center;
    margin: 3rem 0;
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
}

.cta-box-guide h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.cta-box-guide p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-box-guide .btn {
    margin: 1rem 0;
}

.cta-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.85;
}

.faq-list {
    margin: 2rem 0;
}

.faq-item {
    background-color: white;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.faq-item h4 {
    color: var(--primary-color);
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}

.faq-item p {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.guide-conclusion {
    background: linear-gradient(to bottom, #f0f9ff, #e0f2fe);
    border: 2px solid var(--primary-color);
    border-radius: 0.75rem;
    padding: 2.5rem;
    margin: 3rem 0;
}

.guide-conclusion h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    border-bottom: none;
    padding-bottom: 0;
}

.guide-conclusion p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.guide-conclusion ul {
    margin: 1rem 0 1.5rem;
}

.guide-conclusion li {
    padding: 0.5rem 0;
    font-size: 1rem;
}

@media (max-width: 1024px) {
    .content-with-sidebar {
        grid-template-columns: 1fr;
    }

    .sidebar-cta {
        display: none;
    }

    .top-cta-box {
        display: block;
    }

    .content-section article {
        max-width: 100%;
        margin: 0;
    }
}

@media (max-width: 768px) {
    .features-row {
        flex-direction: column;
        gap: 0.75rem;
    }

    .ideal-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
    }

    .lock-cta-content h2 {
        font-size: 1.5rem;
    }

    .content-with-sidebar {
        display: block;
    }

    .main-content {
        width: 100%;
        max-width: 100%;
    }

    .top-cta-box {
        padding: 1.25rem;
    }

    .top-cta-box h3 {
        font-size: 1.25rem;
    }

    .method-card {
        padding: 1.25rem;
        margin-bottom: 2rem;
    }

    .method-header {
        flex-direction: column;
        gap: 0.75rem;
        align-items: flex-start;
    }

    .method-header h2 {
        font-size: 1.25rem;
    }

    .method-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .pros-cons {
        grid-template-columns: 1fr;
    }

    .best-practices,
    .when-makes-sense,
    .where-works,
    .best-use {
        padding: 1rem;
    }

    .featured-service {
        padding: 1.25rem;
    }

    .quick-comparison {
        padding: 1rem;
    }

    .country-links-inline {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .method-card {
        padding: 1rem;
    }

    .method-header h2 {
        font-size: 1.1rem;
    }

    .top-cta-box {
        padding: 1rem;
    }

    .top-cta-box h3 {
        font-size: 1.1rem;
    }
}

/* ========================================
   Country Guide Pages
   ======================================== */

/* Country Hero - flag beside title */
.country-hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.country-flag {
    width: 80px;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
    align-self: center;
    margin-bottom: 1.25rem;
}

/* Country Selector - Sidebar (on getting-currency.html) */
.country-guides-sidebar {
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
    border: 2px solid var(--success);
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.country-guides-sidebar h4 {
    color: var(--text-color);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.country-guides-sidebar p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.country-guides-sidebar .country-dropdown {
    width: 100%;
    margin-bottom: 0.75rem;
}

.country-dropdown {
    position: relative;
}

.country-dropdown-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    background-color: white;
    color: var(--text-color);
    cursor: pointer;
    text-align: left;
}

.country-dropdown-trigger:hover {
    border-color: var(--primary-color);
}

.country-dropdown-trigger:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.country-dropdown-trigger[aria-expanded="true"] {
    border-color: var(--primary-color);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.country-dropdown-arrow {
    font-size: 0.75rem;
    transition: transform 0.2s;
    margin-left: 0.5rem;
}

.country-dropdown-trigger[aria-expanded="true"] .country-dropdown-arrow {
    transform: rotate(180deg);
}

.country-dropdown-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 280px;
    overflow-y: auto;
    background: white;
    border: 2px solid var(--primary-color);
    border-top: none;
    border-bottom-left-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.country-dropdown-list.open {
    display: block;
}

.country-dropdown-search {
    position: sticky;
    top: 0;
    background: white;
    padding: 0.5rem;
    border-bottom: 1px solid var(--border-color);
    z-index: 1;
}

.country-search-input {
    width: 100%;
    padding: 0.5rem 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 0.375rem;
    font-size: 0.9rem;
    font-family: inherit;
    outline: none;
    box-sizing: border-box;
}

.country-search-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.1);
}

.country-dropdown-list li a {
    display: block;
    padding: 0.6rem 1rem;
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.95rem;
    transition: background-color 0.15s;
}

.country-dropdown-list li a:hover {
    background-color: #f0f4ff;
    color: var(--primary-color);
}

.country-dropdown-list li:last-child a {
    border-bottom-left-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
}

/* Bank Card Grid */
.bank-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.bank-card {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 2px solid var(--border-color);
    background-color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.bank-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.bank-card-good {
    border-color: #86efac;
    background: linear-gradient(to bottom, white, #f0fdf4);
}

.bank-card-avoid {
    border-color: #fca5a5;
    background: linear-gradient(to bottom, white, #fef2f2);
}

.bank-card-logo {
    width: 80px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background-color: white;
    border-radius: 0.5rem;
    padding: 0.5rem;
    border: 1px solid var(--border-color);
}

.bank-logo {
    max-width: 100%;
    max-height: 40px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.bank-logo-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.25rem;
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
    padding: 0.25rem;
}

.bank-card-info h4 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    color: var(--text-color);
}

.bank-card-info p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.bank-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.bank-badge-recommended {
    background-color: #dcfce7;
    color: #16a34a;
}

.bank-badge-avoid {
    background-color: #fee2e2;
    color: #dc2626;
}

/* Country page responsive */
@media (max-width: 768px) {
    .country-hero-content {
        flex-direction: column;
        text-align: center;
    }

    .country-flag {
        width: 60px;
    }

    .bank-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .bank-card-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .country-flag {
        width: 50px;
    }
}

/* Country Links Box (inside method cards) */
.country-links-box {
    background: #f0faf0;
    border: 1px solid #c8e6c9;
    border-radius: 10px;
    padding: 1.25rem 1.5rem;
    margin-top: 1.5rem;
}

.country-links-box h4 {
    margin: 0 0 0.25rem 0;
    color: #2e7d32;
    font-size: 1rem;
}

.country-links-box p {
    margin: 0 0 0.75rem 0;
    font-size: 0.9rem;
    color: #555;
}

.country-links-inline {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.country-links-inline .country-dropdown {
    flex: 1;
}

/* ========================================
   Travel Stories - Listing Page
   ======================================== */

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.story-card {
    display: block;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.story-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.story-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.story-card:hover .story-card-image img {
    transform: scale(1.05);
}

.story-card-body {
    padding: 1.5rem;
}

.story-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.story-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.story-card-location {
    font-size: 0.85rem;
    color: var(--text-light);
}

.story-card-date {
    font-size: 0.8rem;
    color: var(--text-light);
}

.story-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0 0 0.75rem 0;
    line-height: 1.4;
}

.story-card:hover .story-card-title {
    color: var(--primary-color);
}

.story-card-excerpt {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0 0 1.25rem 0;
}

.story-card-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
}

/* ========================================
   Travel Stories - Article Page
   ======================================== */

.article-hero-image {
    width: 100%;
    max-height: 500px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.article-hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center 30%;
    display: block;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    padding: 1rem 0 1.5rem;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 2rem;
}

.article-meta-item {
    font-size: 0.9rem;
    color: var(--text-light);
}

.article-lead {
    font-size: 1.3rem;
    line-height: 1.6;
    font-weight: 500;
    color: #1e3a5f;
    background: #eef4fb;
    border: 2px solid var(--secondary-color);
    border-radius: 12px;
    padding: 1.75rem 2rem;
    margin-bottom: 2.5rem;
}

.article-lead p {
    margin-bottom: 0.75rem;
}

.article-lead p:last-child {
    margin-bottom: 0;
}

.article-body p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.article-body .guide-section {
    margin-top: 2.5rem;
}

.article-body .guide-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.key-mistakes-list {
    list-style: none;
    padding: 0;
    counter-reset: mistakes;
}

.key-mistakes-list li {
    counter-increment: mistakes;
    padding: 1rem 1rem 1rem 3.5rem;
    margin-bottom: 0.75rem;
    background: #fef2f2;
    border-left: 3px solid var(--danger);
    border-radius: 0 8px 8px 0;
    position: relative;
}

.key-mistakes-list li::before {
    content: counter(mistakes);
    position: absolute;
    left: 1rem;
    top: 1rem;
    width: 1.75rem;
    height: 1.75rem;
    background: var(--danger);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}

.key-mistakes-list li p {
    margin: 0.25rem 0 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

.stories-sidebar-box {
    background: var(--background-light);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1.5rem;
    text-align: center;
}

.stories-sidebar-box h4 {
    margin: 0 0 0.5rem;
    font-size: 1rem;
}

.stories-sidebar-box p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0 0 1rem;
}

/* Load More - Blog Pagination */
.story-card-hidden {
    display: none;
}

.stories-grid.show-all .story-card-hidden {
    display: block;
}

.load-more-container {
    text-align: center;
    margin-top: 2rem;
    padding-bottom: 1rem;
}

.load-more-container.hidden {
    display: none;
}

@media (max-width: 768px) {
    .stories-grid {
        grid-template-columns: 1fr;
    }

    .article-meta {
        gap: 0.75rem;
    }

    .key-mistakes-list li {
        padding-left: 3rem;
    }

    .key-mistakes-list li::before {
        left: 0.75rem;
    }
}

/* ============================================================
   "How to Get Currency" section — country-page method cards
   Used by the HOWTOGETCASH section injected by
   scripts/inject_how_to_get_cash.py.
   Namespace: cash-method (do NOT use .method-card; that collides
   with the existing component on getting-currency.html).
   ============================================================ */
.cash-method {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    padding: 1.15rem 1.4rem;
    margin-bottom: 0.9rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}
.cash-method-header {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-bottom: 0.5rem;
}
.cash-method-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    padding: 0.3rem 0.65rem;
    border-radius: 0.35rem;
    text-transform: uppercase;
    flex-shrink: 0;
}
.cash-method-badge.badge-cheapest { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
.cash-method-badge.badge-easiest  { background: #eff6ff; color: #1e40af; border: 1px solid #bfdbfe; }
.cash-method-badge.badge-best     { background: #fefce8; color: #854d0e; border: 1px solid #fde68a; }
.cash-method-badge.badge-avoid    { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
.cash-method .cash-method-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
    padding: 0;
    line-height: 1.25;
}
.cash-method .cash-method-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin: 0 0 0.6rem;
}
.cash-method-pill {
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.22rem 0.55rem;
    border-radius: 0.35rem;
}
.cash-method-pill.pill-good { background: #ecfdf5; color: #065f46; }
.cash-method-pill.pill-ok   { background: #eff6ff; color: #1e40af; }
.cash-method-pill.pill-warn { background: #fffbeb; color: #92400e; }
.cash-method-pill.pill-bad  { background: #fef2f2; color: #991b1b; }
.cash-method p {
    margin: 0;
    color: #475569;
    line-height: 1.65;
    font-size: 0.93rem;
}
.cash-method.cash-method-avoid {
    background: #fffbfb;
    border-left: 4px solid #ef4444;
}
