body {
    margin: 0;
    font-family: 'Inter', Arial, sans-serif;
    background: #f8f9fa;
    color: #1a237e;
    line-height: 1.6;
}
.modern-header {
    background: #1a237e;
    color: #fff;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 8px rgba(26,35,126,0.08);
}
.logo {
    display: flex;
    align-items: center;
}
.gov-badge {
    font-size: 2.2rem;
    margin-right: 0.7rem;
}
header h1 {
    font-size: 2.2rem;
    margin: 0;
    letter-spacing: 2px;
    font-weight: 700;
}
nav a {
    color: #fff;
    text-decoration: none;
    margin-left: 2rem;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.2s;
}
nav a:hover {
    color: #ffd700;
}
.hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(90deg, #e3e6f3 60%, #fffde7 100%);
    padding: 3rem 2rem 2rem 2rem;
    border-radius: 0 0 24px 24px;
    box-shadow: 0 4px 24px rgba(26,35,126,0.07);
    margin-bottom: 2rem;
}
.hero-content {
    flex: 1 1 350px;
    max-width: 500px;
}
.hero-content h2 {
    font-size: 2.5rem;
    margin: 0 0 1rem 0;
    color: #1a237e;
    font-weight: 700;
}
.hero-lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #333;
}
.hero-image {
    flex: 1 1 250px;
    text-align: right;
}
.hero-image img {
    max-width: 320px;
    max-height: 220px;
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(26,35,126,0.10);
}
.cta-button {
    display: inline-block;
    background: #1a237e;
    color: #ffd700;
    padding: 0.9rem 2.2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    margin-top: 1rem;
    border: none;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(26,35,126,0.08);
    max-width: 320px;
    white-space: normal;
    text-align: center;
}
.cta-button:hover {
    background: #ffd700;
    color: #1a237e;
    box-shadow: 0 4px 16px #ffd70044;
}
.news-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin: 2rem 0;
}
.news-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(26,35,126,0.07);
    padding: 2rem 1.5rem;
    max-width: 350px;
    flex: 1 1 300px;
    min-width: 260px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.news-card h3 {
    margin-top: 0;
    color: #1a237e;
    font-size: 1.3rem;
}
.news-date {
    font-size: 0.95em;
    color: #888;
    margin-top: 1rem;
}
.why-crypto {
    background: #fffde7;
    border-left: 6px solid #ffd700;
    padding: 2rem 2rem 1.5rem 2rem;
    margin: 2rem auto 2rem auto;
    max-width: 700px;
    border-radius: 12px;
    text-align: left;
    box-shadow: 0 2px 8px rgba(26,35,126,0.06);
}
.why-crypto h2 {
    margin-top: 0;
    color: #1a237e;
    font-size: 2rem;
}
.why-crypto ul {
    padding-left: 1.2em;
    margin-bottom: 1.5em;
}
.why-crypto li {
    margin-bottom: 0.7em;
    font-size: 1.1em;
}
.testimonial {
    background: #e3e6f3;
    border-left: 4px solid #1a237e;
    padding: 1em 1.5em;
    border-radius: 8px;
    font-style: italic;
    color: #333;
    margin: 1.5em 0 0 0;
}
.testimonial span {
    display: block;
    margin-top: 0.5em;
    font-size: 0.95em;
    color: #1a237e;
    font-style: normal;
}
/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    overflow: auto;
    background: rgba(26,35,126,0.18);
    transition: background 0.2s;
}
.modal-content {
    background: #fff;
    margin: 5% auto;
    padding: 2.5rem 2rem 2rem 2rem;
    border-radius: 14px;
    max-width: 480px;
    box-shadow: 0 8px 32px rgba(26,35,126,0.18);
    position: relative;
    animation: modalIn 0.3s;
}
@keyframes modalIn {
    from { transform: translateY(-40px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
.close {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    font-size: 2rem;
    color: #888;
    cursor: pointer;
    transition: color 0.2s;
}
.close:hover {
    color: #1a237e;
}
.hero-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1rem;
}
.hero-image-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 320px;
    min-width: 220px;
    max-width: 380px;
    padding-left: 2rem;
}
.hero-image-actual {
    width: 100%;
    max-width: 320px;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 2px 12px rgba(26,35,126,0.10);
    object-fit: cover;
    aspect-ratio: 1/1;
}
.bank-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
    justify-content: center;
}
.bank-logo-option {
    border: 2px solid #e3e6f3;
    border-radius: 12px;
    padding: 0.5rem;
    background: #fff;
    cursor: pointer;
    transition: border 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    box-sizing: border-box;
    user-select: none;
}
.bank-logo-option.selected {
    border: 2px solid #ffd700;
    box-shadow: 0 0 8px #ffd70044;
}
.bank-logos .bank-logo-option img {
    width: 48px;
    height: 48px;
    max-width: 48px;
    max-height: 48px;
    border-radius: 8px;
    object-fit: contain;
    margin-bottom: 0.3rem;
    display: block;
}
.bank-logo-label {
    font-size: 0.9em;
    color: #1a237e;
    text-align: center;
    margin-top: 0.2rem;
}
/* Smaller bank logos for subscribe form */
.bank-logos .bank-logo-option img {
    max-width: 60px;
    max-height: 60px;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    object-fit: contain;
    box-shadow: 0 1px 4px rgba(26,35,126,0.08);
}
@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }
    .hero-image-wrapper {
        padding-left: 0;
        margin-top: 2rem;
        max-width: 100%;
    }
    .hero-image-actual {
        max-width: 90vw;
    }
    .hero-image {
        text-align: center;
        margin-top: 2rem;
    }
    .news-cards {
        flex-direction: column;
        align-items: center;
    }
}
@media (max-width: 600px) {
    .modern-header, .hero, .why-crypto, .modal-content {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .hero-content h2 {
        font-size: 1.5rem;
    }
    .why-crypto h2 {
        font-size: 1.2rem;
    }
}
footer {
    background: #1a237e;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
    margin-top: 2rem;
    position: relative;
    width: 100%;
    left: 0;
} 