/* Swiss Banking Website - Premium Styles */

:root {
    --navy: #0A192F;
    --swiss-red: #FF0000;
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --medium-gray: #E9ECEF;
    --dark-gray: #495057;
    --text-primary: #212529;
    --text-secondary: #6C757D;
    --border-color: #DEE2E6;
    --shadow-sm: 0 0.125rem 0.25rem rgba(0,0,0,0.075);
    --shadow-md: 0 0.5rem 1rem rgba(0,0,0,0.15);
    --max-width: 1200px;
    --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--white);
}

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

h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: var(--navy);
    border-bottom: 2px solid var(--medium-gray);
    padding-bottom: 0.5rem;
}

h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--dark-gray);
}

p {
    margin-bottom: 1.25rem;
    color: var(--text-primary);
}

.lead-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--dark-gray);
    font-weight: 300;
    margin-bottom: 2rem;
}

/* Navigation */
.nav-container {
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.nav-content {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--navy);
    text-decoration: none;
}

.logo svg {
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

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

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
    position: relative;
}

.nav-links a:hover {
    color: var(--swiss-red);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--swiss-red);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.nav-links a:hover::after {
    transform: scaleX(1);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--navy) 0%, #1a2942 100%);
    color: var(--white);
    padding: 5rem 2rem;
    text-align: center;
}

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

.hero h1 {
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    opacity: 0.9;
    margin-bottom: 3rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
}

.stat-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.8;
}

/* Main Content */
.main-content {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 2rem;
}

.content-wrapper {
    display: grid;
    gap: 2rem;
}

.content-section {
    background: var(--white);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
}

/* Info Boxes */
.info-box, .premium-box, .warning-box {
    border-left: 4px solid;
    padding: 1.5rem;
    margin: 2rem 0;
    background: var(--light-gray);
    border-radius: 4px;
}

.info-box {
    border-left-color: var(--navy);
}

.premium-box {
    border-left-color: var(--swiss-red);
    background: #FFF9F9;
}

.warning-box {
    border-left-color: #FFA500;
    background: #FFF9E6;
}

.info-box h3, .premium-box h4, .warning-box h4 {
    margin-bottom: 1rem;
}

.info-box ul, .premium-box ul, .warning-box ul,
.document-checklist ul {
    list-style: none;
    padding-left: 0;
}

.info-box li, .premium-box li, .warning-box li,
.document-checklist li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.info-box li::before,
.premium-box li::before,
.warning-box li::before,
.document-checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--swiss-red);
    font-weight: bold;
}

/* Comparison Table */
.comparison-table {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

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

/* Bank Finder Tool */
.tool-section {
    background: linear-gradient(to bottom, var(--light-gray), var(--white));
    border: 1px solid var(--border-color);
}

.bank-finder-container {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    margin-top: 2rem;
}

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

.control-group {
    display: flex;
    flex-direction: column;
}

.control-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--navy);
}

.control-group select {
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    background: var(--white);
    transition: border-color 0.3s;
}

.control-group select:focus {
    outline: none;
    border-color: var(--swiss-red);
}

.btn-primary {
    grid-column: span 2;
    padding: 1rem 2rem;
    background: var(--swiss-red);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.bank-results {
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 4px;
    min-height: 100px;
    display: none;
}

.bank-results.show {
    display: block;
}

.bank-result-item {
    background: var(--white);
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 4px;
    border-left: 4px solid var(--swiss-red);
    box-shadow: var(--shadow-sm);
}

.bank-result-item h4 {
    color: var(--navy);
    margin-bottom: 0.5rem;
}

/* Recommended Services */
.recommended-section {
    background: var(--light-gray);
}

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

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--swiss-red);
}

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

.service-note {
    display: block;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-style: italic;
}

/* FAQ Section */
.faq-section {
    background: var(--white);
}

.faq-item {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    color: var(--navy);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

/* AdSense Containers */
.ad-container {
    margin: 2rem auto;
    max-width: var(--max-width);
    padding: 0 2rem;
}

.ad-placeholder {
    background: var(--light-gray);
    border: 2px dashed var(--border-color);
    padding: 2rem;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.875rem;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Footer */
.footer {
    background: var(--navy);
    color: var(--white);
    padding: 3rem 2rem 2rem;
    margin-top: 4rem;
}

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

.footer-section h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 600;
}

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

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

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-section a:hover {
    color: var(--white);
    text-decoration: underline;
}

.copyright {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

/* Modal */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.modal-overlay.show {
    display: flex;
}

.modal-content {
    background: var(--white);
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    padding: 2rem;
    border-radius: 8px;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-secondary);
    transition: color 0.2s;
}

.modal-close:hover {
    color: var(--swiss-red);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-content {
        padding: 1rem;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.875rem;
    }

    .hero {
        padding: 3rem 1rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .main-content {
        padding: 1rem;
    }

    .content-section {
        padding: 1.5rem;
    }

    .finder-controls {
        grid-template-columns: 1fr;
    }

    .btn-primary {
        grid-column: span 1;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .comparison-table,
    .info-box,
    .premium-box,
    .warning-box {
        padding: 1rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .logo span {
        display: none;
    }

    .nav-links {
        font-size: 0.8rem;
        gap: 0.5rem;
    }

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

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

/* Print Styles */
@media print {
    .nav-container,
    .ad-container,
    .bank-finder-container,
    .footer {
        display: none;
    }

    .hero {
        background: none;
        color: var(--text-primary);
        padding: 1rem 0;
    }

    .content-section {
        page-break-inside: avoid;
    }
}

/* ========================================
   NEW MULTI-PAGE STYLES
   ======================================== */

/* Active Navigation State */
.nav-links a.active {
    color: var(--swiss-red);
}

.nav-links a.active::after {
    transform: scaleX(1);
}

/* Hero Variations */
.hero-large {
    padding: 7rem 2rem;
}

.hero-guide,
.hero-banks,
.hero-account,
.hero-finder {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--navy) 0%, #2a3f5f 100%);
}

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

.btn-secondary {
    padding: 1rem 2rem;
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--navy);
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

/* Homepage Components */
.intro-section,
.topics-section,
.stats-section,
.tiers-section,
.news-section,
.quickstart-section,
.trust-section,
.cta-section {
    margin: 4rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.2rem;
    font-weight: 300;
    margin-top: 1rem;
}

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

.intro-card,
.topic-card,
.stat-card,
.trust-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.intro-card:hover,
.topic-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--swiss-red);
}

.card-icon {
    margin-bottom: 1.5rem;
}

.topic-card {
    text-decoration: none;
    color: inherit;
    display: block;
}

.topic-link {
    color: var(--swiss-red);
    font-weight: 600;
    margin-top: 1rem;
    display: block;
}

.stat-detail {
    margin: 1.5rem 0;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--navy);
    display: block;
}

.stat-context {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Banking Tiers Table */
.tiers-table {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    margin: 2rem 0;
}

.tier-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 2fr 1.5fr;
    gap: 1rem;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.tier-row:last-child {
    border-bottom: none;
}

.tier-header {
    background: var(--navy);
    color: var(--white);
    font-weight: 700;
}

.tier-premium {
    background: linear-gradient(135deg, #FFF9F9 0%, #FFEFEF 100%);
    border-left: 4px solid var(--swiss-red);
}

.tier-name strong {
    display: block;
    color: var(--navy);
    margin-bottom: 0.25rem;
}

.tier-subtitle {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.tier-cta {
    text-align: center;
    margin-top: 2rem;
}

/* News Grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.news-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    border-top: 3px solid var(--swiss-red);
}

.news-date {
    color: var(--swiss-red);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Quick Start Steps */
.quickstart-steps {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    background: var(--swiss-red);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-link {
    color: var(--swiss-red);
    text-decoration: none;
    font-weight: 500;
    margin-top: 0.5rem;
    display: inline-block;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--navy) 0%, #1a2942 100%);
    border-radius: 12px;
    padding: 4rem 2rem;
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    color: var(--white);
    border: none;
}

.cta-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

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

.cta-note {
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Guide Page Styles */
.content-with-sidebar {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 3rem;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 2rem;
}

.guide-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-content {
    background: var(--white);
    border-radius: 8px;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
}

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

.sidebar-nav li {
    margin-bottom: 0.75rem;
}

.sidebar-nav a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.sidebar-nav a:hover {
    color: var(--swiss-red);
}

.guide-content {
    max-width: 850px;
}

.guide-cta-content {
    text-align: center;
    padding: 3rem;
    background: var(--light-gray);
    border-radius: 8px;
}

/* Banks Directory Styles */
.banks-nav-section {
    background: var(--light-gray);
    padding: 3rem 2rem;
    margin-bottom: 3rem;
}

.banks-nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
}

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

.bank-nav-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    border: 2px solid var(--border-color);
    transition: all 0.3s;
    text-align: center;
}

.bank-nav-card:hover {
    border-color: var(--swiss-red);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.banks-directory {
    max-width: 1000px;
    margin: 0 auto;
}

.bank-profile {
    background: var(--white);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    margin-bottom: 3rem;
    overflow: hidden;
}

.bank-header {
    background: linear-gradient(135deg, var(--navy) 0%, #2a3f5f 100%);
    color: var(--white);
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bank-header h3 {
    margin: 0;
    color: var(--white);
}

.bank-tag {
    background: var(--swiss-red);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.bank-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    padding: 2rem;
    background: var(--light-gray);
    border-bottom: 1px solid var(--border-color);
}

.stat-item {
    text-align: center;
}

.bank-profile h4 {
    margin: 2rem 2rem 1rem;
    color: var(--navy);
}

.bank-profile p,
.bank-profile ul {
    margin: 1rem 2rem;
}

.service-breakdown {
    padding: 0 2rem 2rem;
}

.service-tier {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.service-tier h5 {
    color: var(--swiss-red);
    margin-bottom: 1rem;
}

.requirement-box {
    background: #FFF9F9;
    border-left: 4px solid var(--swiss-red);
    padding: 1.5rem;
    margin: 1.5rem 2rem;
    border-radius: 4px;
}

.requirement-box p {
    margin: 0.5rem 0;
}

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

.foreign-bank-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.bank-comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

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

.bank-comparison-table thead {
    background: var(--navy);
    color: var(--white);
}

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

/* Account Opening Page Styles */
.process-overview {
    background: var(--light-gray);
    padding: 3rem 2rem;
    margin-bottom: 3rem;
}

.process-container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 3rem 0;
    position: relative;
}

.timeline-item {
    text-align: center;
    flex: 1;
    position: relative;
}

.timeline-number {
    background: var(--swiss-red);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 auto 1rem;
}

.timeline-connector {
    flex: 0.5;
    height: 2px;
    background: var(--swiss-red);
    margin: 0 -25px;
    margin-top: -40px;
}

.process-total {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--navy);
}

.account-guide {
    max-width: 900px;
    margin: 0 auto;
}

.eligibility-checklist,
.bank-selection-guide,
.contact-strategy,
.document-section,
.application-tips,
.meeting-guide,
.interview-guide,
.cultural-guide,
.approval-process,
.information-requests,
.rejection-guide,
.funding-guide,
.management-tips,
.special-situation,
.mistakes-grid,
.success-strategies,
.first-year-guide {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.profile-recommendation,
.documentation-example,
.meeting-section,
.interview-topic,
.strategy,
.mistake-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    border: 1px solid var(--border-color);
}

/* Bank Finder Tool Styles */
.finder-container {
    max-width: 900px;
    margin: 0 auto;
}

.finder-intro {
    text-align: center;
}

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

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.finder-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
}

.form-section {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 2px solid var(--border-color);
}

.form-section:last-of-type {
    border-bottom: none;
}

.form-section h3 {
    color: var(--navy);
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.form-group select,
.form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    background: var(--white);
    transition: border-color 0.3s;
}

.form-group select:focus,
.form-group input:focus {
    outline: none;
    border-color: var(--swiss-red);
}

.form-group small {
    display: block;
    margin-top: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.checkbox-group label {
    margin-bottom: 1rem;
}

.checkbox-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
}

.checkbox-list label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: normal;
    cursor: pointer;
}

.checkbox-list input[type="checkbox"] {
    width: auto;
}

.finder-results {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    margin-top: 3rem;
}

.resources-section {
    margin-top: 4rem;
}

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

.resource-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.resource-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.resource-link {
    color: var(--swiss-red);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 1rem;
}

/* Responsive Updates for New Components */
@media (max-width: 1024px) {
    .content-with-sidebar {
        grid-template-columns: 1fr;
    }

    .guide-sidebar {
        position: static;
        margin-bottom: 2rem;
    }

    .tier-row {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .timeline-connector {
        display: none;
    }

    .process-timeline {
        flex-direction: column;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .banks-nav-grid,
    .intro-grid,
    .topics-grid,
    .stats-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }

    .hero-cta,
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

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

    .bank-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}