/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #374151;
    background: #f8fafc;
    min-height: 100vh;
}

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

/* Header */
.header {
    background: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 50;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: inherit;
    z-index: 60;
}

.logo-icon {
    width: 2rem;
    height: 2rem;
    color: #2563eb;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: bold;
    color: #111827;
}

/* Mobile menu toggle */
.mobile-menu-toggle {
    display: none;
}

.mobile-menu-button {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 60;
    position: relative;
}

.hamburger-line {
    width: 1.5rem;
    height: 2px;
    background: #374151;
    margin: 2px 0;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Hamburger animation */
.mobile-menu-toggle:checked + .mobile-menu-button .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle:checked + .mobile-menu-button .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle:checked + .mobile-menu-button .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: #374151;
    text-decoration: none;
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
    font-weight: 500;
    transition: color 0.2s;
}

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

.nav-icon {
    width: 1rem;
    height: 1rem;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .mobile-menu-button {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 50;
    }
    
    .mobile-menu-toggle:checked ~ .nav {
        transform: translateX(0);
    }
    
    .nav-link {
        font-size: 1.25rem;
        padding: 1rem 2rem;
    }
    
    /* Overlay */
    .nav::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
    }
}

/* Main Container */
.main-container {
    flex: 1;
}

/* Page Header */
.page-header {
    background: white;
    border-bottom: 1px solid #e5e7eb;
}

.page-header-content {
    padding: 3rem 0;
}

.breadcrumb {
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.breadcrumb a {
    color: #2563eb;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb-separator {
    margin: 0 0.5rem;
    color: #6b7280;
}

.page-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 1rem;
}

.page-description {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 768px;
}

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

/* Bank Detail Specific Styles */
.bank-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.bank-detail-main {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.bank-detail-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.bank-detail-header {
    padding: 2rem 2rem 1rem;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.bank-detail-info {
    flex: 1;
}

.bank-detail-name {
    font-size: 1.875rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.bank-detail-type {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    background: #dbeafe;
    color: #1e40af;
}

.bank-status {
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    text-align: center;
}

.bank-status.active {
    background: #dcfce7;
    color: #16a34a;
}

.bank-status.inactive {
    background: #fee2e2;
    color: #dc2626;
}

.bank-codes-section {
    padding: 0 2rem 1rem;
    display: flex;
    gap: 2rem;
}

.bank-code-item {
    text-align: center;
}

.bank-code-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.bank-code-value {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #2563eb;
    font-family: 'Courier New', monospace;
}

.bank-description {
    padding: 0 2rem 2rem;
}

.bank-description h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1rem;
}

.bank-description p {
    color: #6b7280;
    line-height: 1.6;
}

.bank-contact-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    padding: 2rem;
}

.bank-contact-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1.5rem;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #6b7280;
    flex-shrink: 0;
}

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

.contact-item a:hover {
    text-decoration: underline;
}

/* Sidebar */
.bank-detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.quick-info-card,
.related-links-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
}

.quick-info-card h3,
.related-links-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1rem;
}

.quick-info-items {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.quick-info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.quick-info-item .label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #6b7280;
}

.quick-info-item .value {
    font-weight: 500;
    color: #111827;
}

.quick-info-item .value.active {
    color: #16a34a;
}

.quick-info-item .value.inactive {
    color: #dc2626;
}

.related-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.related-links a {
    color: #2563eb;
    text-decoration: none;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f3f4f6;
}

.related-links a:hover {
    color: #1d4ed8;
}

.related-links li:last-child a {
    border-bottom: none;
}

/* Search Section */
.search-section {
    margin-bottom: 2rem;
}

.search-container {
    position: relative;
    max-width: 28rem;
    margin: 0 auto;
}

.search-icon {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.25rem;
    height: 1.25rem;
    color: #9ca3af;
}

.search-input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    font-size: 1.125rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    background: white;
    outline: none;
    transition: border-color 0.2s;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.search-input:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.search-results {
    text-align: center;
    margin-top: 1rem;
    color: #6b7280;
    display: none;
}

/* Banks Grid */
.banks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.bank-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.bank-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #2563eb;
}

.bank-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #2563eb;
}

.bank-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.bank-info {
    flex: 1;
}

.bank-name {
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0.5rem;
    color: #111827;
}

.bank-type {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
}

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

.bank-code-section {
    flex: 1;
}

.bank-code-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #6b7280;
    margin-bottom: 0.25rem;
}

.bank-code {
    font-size: 1.875rem;
    font-weight: bold;
    color: #2563eb;
    font-family: 'Courier New', monospace;
    cursor: pointer;
    transition: color 0.2s;
}

.bank-code:hover {
    color: #1d4ed8;
}

.bank-icon {
    background: #f3f4f6;
    padding: 0.75rem;
    border-radius: 0.5rem;
    margin-left: 1rem;
}

.bank-icon svg {
    width: 2rem;
    height: 2rem;
    color: #6b7280;
}

/* Bank Type Colors */
.type-velka-banka { background: #dbeafe; color: #1e40af; }
.type-centralni-banka { background: #fee2e2; color: #dc2626; }
.type-stredni-banka { background: #dcfce7; color: #16a34a; }
.type-hypotecni-banka { background: #f3e8ff; color: #9333ea; }
.type-stavebni-sporitelna { background: #fed7aa; color: #ea580c; }
.type-sporitelni-druzstvo { background: #fef3c7; color: #d97706; }
.type-zahranicni-pobocka { background: #e0e7ff; color: #4f46e5; }
.type-platebni-spolecnost { background: #fce7f3; color: #ec4899; }
.type-financni-spolecnost { background: #ccfbf1; color: #0d9488; }
.type-rozvojova-banka { background: #ede9fe; color: #7c3aed; }
.type-specializovana-banka { background: #fef7cd; color: #ca8a04; }
.type-zahranicni-banka { background: #f0fdf4; color: #15803d; }
.type-default { background: #f3f4f6; color: #374151; }

/* No Results */
.no-results {
    text-align: center;
    padding: 3rem;
    background: white;
    border-radius: 0.75rem;
    border: 1px solid #e5e7eb;
}

.no-results-icon {
    background: #f3f4f6;
    border-radius: 50%;
    padding: 1.5rem;
    width: 6rem;
    height: 6rem;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.no-results-icon svg {
    width: 3rem;
    height: 3rem;
    color: #9ca3af;
}

.no-results-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
}

.no-results-text {
    color: #6b7280;
}

/* Magazine specific styles */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.article-card {
    background: white;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

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

.article-image {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

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

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

.article-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 500;
}

.category-rady { background: #dbeafe; color: #1e40af; }
.category-novinky { background: #dbeafe; color: #1e40af; }
.category-analyzy { background: #fef3c7; color: #d97706; }
.category-technologie { background: #dcfce7; color: #16a34a; }
.category-bezpecnost { background: #fee2e2; color: #dc2626; }
.category-investice { background: #fef3c7; color: #d97706; }

.article-content {
    padding: 1.5rem;
}

.article-title {
    margin-bottom: 0.75rem;
}

.article-title a {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    text-decoration: none;
    line-height: 1.4;
    display: block;
}

.article-title a:hover {
    color: #2563eb;
}

.article-excerpt {
    color: #6b7280;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.article-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.article-author,
.article-time {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.meta-icon {
    width: 1rem;
    height: 1rem;
}

.article-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #f3f4f6;
    padding-top: 1rem;
}

.article-date {
    font-size: 0.875rem;
    color: #6b7280;
}

.read-more {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.read-more:hover {
    color: #1d4ed8;
}

.read-more-icon {
    width: 1rem;
    height: 1rem;
}

/* Article Detail Specific Styles - Magazine Layout */
.article-hero-section {
    background: white;
    padding: 2rem 0 3rem;
    border-bottom: 1px solid #f3f4f6;
}

.article-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.article-breadcrumb {
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    opacity: 0.8;
}

.article-breadcrumb a {
    color: #2563eb;
    text-decoration: none;
}

.article-breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb-separator {
    margin: 0 0.5rem;
    color: #6b7280;
}

.article-hero-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.article-category-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    background: #dbeafe;
    color: #1e40af;
}

.article-date {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
}

.article-hero-title {
    font-size: 3rem;
    font-weight: bold;
    color: #111827;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.article-hero-perex {
    font-size: 1.25rem;
    color: #6b7280;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
}

.article-featured-section {
    background: #f8fafc;
    padding: 1rem 0;
}

.article-featured-image {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.article-hero-image {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.article-content-section {
    padding: 1rem 0;
    background: white;
}

.article-content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.article-content {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 3rem;
}

.article-content h1,
.article-content h2,
.article-content h3,
.article-content h4,
.article-content h5,
.article-content h6 {
    color: #111827;
    font-weight: 700;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.article-content h1 { font-size: 2.25rem; }
.article-content h2 { font-size: 2rem; }
.article-content h3 { font-size: 1.75rem; }
.article-content h4 { font-size: 1.5rem; }

.article-content p {
    margin-bottom: 1.5rem;
}

.article-content ul,
.article-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.article-content li {
    margin-bottom: 0.75rem;
}

.article-content blockquote {
    border-left: 4px solid #2563eb;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    font-style: italic;
    color: #6b7280;
    background: #f8fafc;
    border-radius: 0 0.5rem 0.5rem 0;
    font-size: 1.125rem;
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 0.75rem;
    margin: 2rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.article-footer-actions {
    border-top: 1px solid #e5e7eb;
    padding-top: 2rem;
    text-align: center;
    margin-top: 2rem;
}

.back-to-magazine {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    padding: 1rem 2rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.back-to-magazine:hover {
    background: #2563eb;
    color: white;
    border-color: #2563eb;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Contact specific styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-section-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 2rem;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}

.contact-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-card-content {
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-card-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #2563eb;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.contact-card-title {
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.25rem;
}

.contact-card-value {
    color: #6b7280;
    margin-bottom: 0.25rem;
}

.contact-card-note {
    font-size: 0.875rem;
    color: #6b7280;
}

.contact-form-section {
    max-width: 100%;
}

.contact-form-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.contact-form-header {
    padding: 1.5rem 1.5rem 0;
}

.contact-form-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
}

.contact-form-description {
    color: #6b7280;
}

.contact-form {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

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

.form-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.2s;
    outline: none;
    background: white;
}

.form-input:focus,
.form-textarea:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.form-submit {
    background: #2563eb;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 0.5rem;
}

.form-submit:hover {
    background: #1d4ed8;
}

/* Footer */
.footer {
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
    margin-top: 4rem;
}

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

.footer-main {
    grid-column: span 2;
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: inherit;
    margin-bottom: 1rem;
}

.footer-description {
    color: #6b7280;
    margin-bottom: 1rem;
    max-width: 320px;
}

.footer-copyright {
    font-size: 0.875rem;
    color: #6b7280;
}

.footer-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #111827;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #2563eb;
}

.footer-contact {
    list-style: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .bank-detail-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-main {
        grid-column: span 1;
    }
    
    .banks-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }
    
    .page-description {
        font-size: 1rem;
    }
    
    .bank-detail-name {
        font-size: 1.5rem;
    }
    
    .bank-codes-section {
        flex-direction: column;
        gap: 1rem;
        text-align: left;
    }
    
    .bank-code-value {
        font-size: 1.5rem;
    }
    
    .banks-grid {
        grid-template-columns: 1fr;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .bank-card {
        padding: 1.25rem;
    }
    
    .bank-name {
        font-size: 1rem;
    }
    
    .bank-code {
        font-size: 1.5rem;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .page-header-content {
        padding: 2rem 0;
    }
    
    .content-section {
        padding: 2rem 0;
    }
    
    .search-container {
        max-width: 100%;
    }
    
    .bank-detail-card,
    .bank-contact-card,
    .quick-info-card,
    .related-links-card {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .article-content-wrapper {
        padding: 0 1rem;
    }
    
    .article-detail-image {
        max-height: 250px;
    }
    
    .article-content {
        font-size: 1rem;
    }
    
    .article-content h1 { font-size: 1.75rem; }
    .article-content h2 { font-size: 1.5rem; }
    .article-content h3 { font-size: 1.25rem; }
}

@media (max-width: 640px) {
    .article-detail-image {
        max-height: 200px;
    }
}

/* Article Detail Responsive */
@media (max-width: 1024px) {
    .article-hero-image {
        max-height: 400px;
    }
    
    .article-hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .article-hero-section {
        padding: 1.5rem 0 2rem;
    }
    
    .article-content-wrapper,
    .article-hero-content {
        padding: 0 1rem;
    }
    
    .article-hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .article-hero-perex {
        font-size: 1.125rem;
    }
    
    .article-hero-image {
        max-height: 300px;
    }
    
    .article-content {
        font-size: 1rem;
    }
    
    .article-content h1 { font-size: 1.875rem; }
    .article-content h2 { font-size: 1.75rem; }
    .article-content h3 { font-size: 1.5rem; }
    .article-content h4 { font-size: 1.25rem; }
    
    .article-featured-section {
        padding: 2rem 0;
    }
    
    .article-content-section {
        padding: 3rem 0;
    }
}

@media (max-width: 640px) {
    .article-hero-title {
        font-size: 1.75rem;
    }
    
    .article-hero-image {
        max-height: 250px;
    }
    
    .article-hero-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .back-to-magazine {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }

    
}
.responsive-table-container {
    width: 100%;
    overflow-x: auto;
  }

  table.-wm-MsoNormalTable {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #000;
  }

  @media (max-width: 600px) {
    table.-wm-MsoNormalTable {
      font-size: 14px;
    }
  }