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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Header Styles */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.contact-bar {
    background: #2563eb;
    color: white;
    padding: 8px 0;
}

.contact-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.contact-info {
    display: flex;
    gap: 24px;
}

.contact-link {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}

.contact-link:hover {
    color: #bfdbfe;
}

.phone-highlight {
    font-weight: 600;
}

.expert-text {
    color: #bfdbfe;
}

.main-nav {
    padding: 16px 0;
}

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

.logo a {
    font-size: 24px;
    font-weight: bold;
    color: #2563eb;
    text-decoration: none;
    transition: color 0.3s;
}

.logo a:hover {
    color: #1d4ed8;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: #2563eb;
}

.cta-button {
    background: #2563eb;
    color: white;
    padding: 12px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background: #1d4ed8;
}

.mobile-menu-btn {
    display: none;
    color: #374151;
    font-size: 24px;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 16px;
    padding: 16px 0;
    border-top: 1px solid #e5e7eb;
}

.mobile-menu a {
    color: #374151;
    text-decoration: none;
    font-weight: 500;
}

.mobile-cta {
    background: #2563eb;
    color: white !important;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
}

/* Page Management */
.page {
    display: none;
}

.page.active {
    display: block;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #eff6ff 0%, #e0e7ff 100%);
    padding: 80px 0;
}

.hero-content {
    text-align: center;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: bold;
    color: #111827;
    margin-bottom: 24px;
    line-height: 1.2;
}

.highlight {
    color: #2563eb;
}

.hero-description {
    font-size: 20px;
    color: #6b7280;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    margin-bottom: 64px;
}

.btn-primary {
    background: #2563eb;
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    background: #1d4ed8;
}

.btn-secondary {
    background: white;
    color: #2563eb;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border: 2px solid #2563eb;
    transition: all 0.3s;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.1);
}

.btn-secondary:hover {
    background: #f9fafb;
}

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

.feature {
    text-align: center;
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 32px;
}

.feature-icon.trusted {
    background: #dbeafe;
    color: #2563eb;
}

.feature-icon.deals {
    background: #dcfce7;
    color: #16a34a;
}

.feature-icon.support {
    background: #f3e8ff;
    color: #9333ea;
}

.feature h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.feature p {
    color: #6b7280;
}

/* Section Styles */
.wallets-section {
    padding: 80px 0;
    background: white;
}

.banks-section {
    padding: 80px 0;
    background: #f9fafb;
}

.contact-section {
    padding: 80px 0;
    background: #1e3a8a;
    color: white;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 20px;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.contact-section .section-header p {
    color: #bfdbfe;
}

/* Wallet Cards */
.wallets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
}

.wallet-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 2px solid #e5e7eb;
    transition: all 0.3s;
    position: relative;
}

.wallet-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.wallet-card.recommended {
    border-color: #2563eb;
    box-shadow: 0 4px 6px rgba(37, 99, 235, 0.1);
}

.recommended-badge {
    background: #2563eb;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    position: absolute;
    top: -8px;
    left: 24px;
}

.wallet-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.wallet-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.wallet-logo {
    font-size: 32px;
}

.wallet-info h3 {
    font-size: 24px;
    font-weight: bold;
}

.rating {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #fbbf24;
    font-weight: 600;
}

.wallet-content {
    space-y: 16px;
}

.fees h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #16a34a;
}

.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 16px 0;
}

.pros h4,
.cons h4 {
    font-weight: 600;
    margin-bottom: 8px;
}

.pros ul,
.cons ul {
    list-style: none;
}

.pros li,
.cons li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 4px;
    font-size: 14px;
}

.check {
    color: #16a34a;
    font-weight: bold;
}

.cross {
    color: #dc2626;
    font-weight: bold;
}

.signup-bonus {
    background: #f0fdf4;
    padding: 16px;
    border-radius: 8px;
    margin: 16px 0;
}

.signup-bonus h4 {
    color: #166534;
    font-weight: 600;
    margin-bottom: 4px;
}

.signup-bonus p {
    color: #15803d;
}

.signup-btn {
    display: block;
    width: 100%;
    background: #2563eb;
    color: white;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
    margin-top: 16px;
}

.signup-btn:hover {
    background: #1d4ed8;
}

/* Bank Cards */
.banks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
}

.bank-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 2px solid #e5e7eb;
    transition: all 0.3s;
    position: relative;
}

.bank-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.bank-card.recommended {
    border-color: #16a34a;
    box-shadow: 0 4px 6px rgba(22, 163, 74, 0.1);
}

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

.bank-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.bank-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bank-logo {
    font-size: 32px;
}

.bank-info h3 {
    font-size: 24px;
    font-weight: bold;
}

.bank-type {
    color: #6b7280;
    font-size: 14px;
}

.bank-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.detail h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    margin-bottom: 4px;
    font-size: 14px;
}

.detail p {
    font-size: 12px;
    color: #6b7280;
}

.rewards {
    margin-bottom: 16px;
}

.rewards h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #9333ea;
}

.bank-card .signup-bonus {
    background: #faf5ff;
}

.bank-card .signup-bonus h4 {
    color: #7c3aed;
}

.bank-card .signup-bonus p {
    color: #8b5cf6;
}

.bank-card .signup-btn {
    background: #16a34a;
}

.bank-card .signup-btn:hover {
    background: #15803d;
}

/* Help Section */
.help-section {
    margin-top: 48px;
    text-align: center;
}

.help-box {
    background: #eff6ff;
    padding: 32px;
    border-radius: 12px;
    max-width: 500px;
    margin: 0 auto;
}

.help-box.green {
    background: #f0fdf4;
}

.help-box h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1e40af;
}

.help-box.green h3 {
    color: #166534;
}

.help-box p {
    color: #1e40af;
    margin-bottom: 16px;
}

.help-box.green p {
    color: #166534;
}

.help-btn {
    background: #2563eb;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

.help-btn:hover {
    background: #1d4ed8;
}

.help-btn.green {
    background: #16a34a;
}

.help-btn.green:hover {
    background: #15803d;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-info h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 32px;
}

.benefits {
    space-y: 24px;
}

.benefit {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.benefit-icon {
    background: #1e40af;
    padding: 12px;
    border-radius: 8px;
    flex-shrink: 0;
}

.benefit h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.benefit p {
    color: #bfdbfe;
}

.contact-card {
    background: white;
    color: #111827;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.contact-card h3 {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 24px;
}

.contact-details {
    space-y: 24px;
}

.contact-item.main {
    text-align: center;
    padding-bottom: 24px;
    border-bottom: 1px solid #e5e7eb;
}

.contact-icon {
    background: #dbeafe;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: #2563eb;
    font-size: 32px;
}

.contact-item h4 {
    font-size: 20px;
    font-weight: bold;
    color: #2563eb;
    margin-bottom: 8px;
}

.phone-number {
    font-size: 24px;
    font-weight: bold;
    color: #2563eb;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
}

.phone-number:hover {
    color: #1d4ed8;
}

.contact-detail {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-item a {
    color: #2563eb;
    text-decoration: none;
    text-align: center;
    display: block;
}

.contact-item a:hover {
    color: #1d4ed8;
}

.hours {
    text-align: center;
}

.hours p {
    margin-bottom: 4px;
}

.contact-cta {
    background: #2563eb;
    color: white;
    padding: 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    display: block;
    margin-top: 24px;
    transition: background-color 0.3s;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

.contact-cta:hover {
    background: #1d4ed8;
}

/* Legal Pages */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 20px;
}

.legal-content h1 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 24px;
    color: #111827;
}

.legal-content h2 {
    font-size: 24px;
    font-weight: 600;
    margin: 32px 0 16px;
    color: #111827;
}

.legal-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 24px 0 12px;
    color: #111827;
}

.legal-content p {
    margin-bottom: 16px;
    line-height: 1.7;
    color: #374151;
}

.legal-content ul {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-content li {
    margin-bottom: 8px;
    color: #374151;
}

.last-updated {
    color: #6b7280;
    font-style: italic;
    margin-bottom: 32px;
}

.contact-box {
    background: #f9fafb;
    padding: 16px;
    border-radius: 8px;
    margin: 16px 0;
}

.notice-box {
    background: #eff6ff;
    border-left: 4px solid #2563eb;
    padding: 24px;
    margin: 24px 0;
}

.notice-box h2 {
    color: #1e40af;
    margin-bottom: 8px;
}

.notice-box p {
    color: #1e40af;
}

.ftc-box {
    background: #f0fdf4;
    border-left: 4px solid #16a34a;
    padding: 24px;
    margin: 32px 0;
}

.ftc-box h3 {
    color: #166534;
    margin-bottom: 8px;
}

.ftc-box p {
    color: #166534;
}

/* Footer */
.footer {
    background: #111827;
    color: white;
    padding: 48px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 32px;
    margin-bottom: 32px;
}

.footer-section h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 16px;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-section p {
    color: #d1d5db;
    margin-bottom: 16px;
    max-width: 400px;
}

.footer-contact {
    space-y: 8px;
}

.footer-contact-link {
    color: #60a5fa;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}

.footer-contact-link:hover {
    color: #93c5fd;
}

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

.footer-section li {
    margin-bottom: 8px;
}

.footer-section a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 32px;
    text-align: center;
}

.footer-bottom p {
    color: #9ca3af;
    margin-bottom: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

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

    .contact-bar .container {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .contact-info {
        flex-direction: column;
        gap: 8px;
    }

    .expert-text {
        display: none;
    }

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

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
    }

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

    .wallets-grid,
    .banks-grid {
        grid-template-columns: 1fr;
    }

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

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

    .contact-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

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

    .section-header h2 {
        font-size: 28px;
    }

    .section-header p {
        font-size: 16px;
    }
}

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

    .hero {
        padding: 60px 0;
    }

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

    .hero-description {
        font-size: 16px;
    }

    .wallets-section,
    .banks-section,
    .contact-section {
        padding: 60px 0;
    }

    .wallet-card,
    .bank-card {
        padding: 20px;
    }

    .legal-content {
        padding: 60px 16px;
    }

    .legal-content h1 {
        font-size: 28px;
    }
}

/* Utility Classes */
.space-y-8 > * + * {
    margin-top: 32px;
}

.space-y-6 > * + * {
    margin-top: 24px;
}

.space-y-4 > * + * {
    margin-top: 16px;
}

.space-y-2 > * + * {
    margin-top: 8px;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus States for Accessibility */
a:focus,
button:focus {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .hero-buttons,
    .signup-btn,
    .help-btn,
    .contact-cta {
        display: none;
    }
}