.visa-article {
    background: #fff;
}

.article-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 20px;
    margin-bottom: 40px;
}

.breadcrumb {
    font-size: 14px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
}

.article-hero h1 {
    font-size: 42px;
    margin-bottom: 16px;
    font-weight: 700;
}

.lead {
    font-size: 20px;
    margin-bottom: 24px;
    opacity: 0.95;
}

.article-meta {
    display: flex;
    gap: 24px;
    font-size: 14px;
}

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

.summary-box {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 40px;
    border: 2px solid #e9ecef;
}

.summary-box h3 {
    margin-bottom: 20px;
    color: #1f2937;
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.summary-item {
    font-size: 14px;
}

.summary-item strong {
    display: block;
    color: #6b7280;
    font-size: 12px;
    margin-bottom: 4px;
}

.table-of-contents {
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 40px;
}

.table-of-contents h3 {
    margin-bottom: 16px;
}

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

.table-of-contents li {
    margin-bottom: 12px;
}

.table-of-contents a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.2s;
}

.table-of-contents a:hover {
    color: #5568d3;
}

.content-section {
    margin-bottom: 60px;
}

.content-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1f2937;
}

.content-section h3 {
    font-size: 24px;
    margin: 32px 0 16px;
    color: #374151;
}

.content-section p {
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 16px;
}

.alert {
    padding: 16px 20px;
    border-radius: 8px;
    margin: 24px 0;
}

.alert-info {
    background: #eff6ff;
    border-left: 4px solid #3b82f6;
    color: #1e40af;
}

.alert-warning {
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
    color: #92400e;
}

.alert-success {
    background: #d1fae5;
    border-left: 4px solid #10b981;
    color: #065f46;
}

.country-list-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 24px 0;
}

.country-item {
    padding: 8px;
    font-size: 14px;
    color: #374151;
}

.requirements-checklist {
    margin: 32px 0;
}

.requirement-item {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
    padding: 24px;
    background: #f9fafb;
    border-radius: 12px;
}

.requirement-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.requirement-content h4 {
    margin-bottom: 8px;
    color: #1f2937;
}

.pro-tip {
    background: #fef3c7;
    padding: 12px;
    border-radius: 6px;
    margin-top: 12px;
    font-size: 14px;
}

.process-steps {
    margin: 32px 0;
}

.step {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #667eea;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.restrictions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 32px 0;
}

.restriction-card {
    padding: 24px;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
}

.restriction-card h4 {
    margin-bottom: 12px;
}

.extension-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.extension-table th,
.extension-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.extension-table th {
    background: #f9fafb;
    font-weight: 600;
}

.mistakes-list {
    margin: 32px 0;
}

.mistake-item {
    padding: 20px;
    margin-bottom: 16px;
    background: #fef2f2;
    border-left: 4px solid #ef4444;
    border-radius: 8px;
}

.mistake-item h4 {
    margin-bottom: 8px;
    color: #991b1b;
}

.faq-item {
    margin-bottom: 20px;
    padding: 20px;
    background: #f9fafb;
    border-radius: 8px;
}

.faq-question {
    margin-bottom: 12px;
    color: #1f2937;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 32px 0;
}

.related-card {
    padding: 24px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s;
}

.related-card:hover {
    border-color: #667eea;
    transform: translateY(-4px);
}

.related-card h4 {
    margin-bottom: 8px;
    color: #1f2937;
}

.cta-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 48px;
    border-radius: 16px;
    text-align: center;
    margin: 60px 0;
}

.cta-box h3 {
    font-size: 28px;
    margin-bottom: 16px;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-primary {
    background: #667eea;
    color: white;
}

.btn-primary:hover {
    background: #5568d3;
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
}

@media (max-width: 768px) {
    .article-hero h1 {
        font-size: 32px;
    }

    .summary-grid,
    .country-list-grid,
    .restrictions-grid,
    .related-grid {
        grid-template-columns: 1fr;
    }
}
.benefit-list {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.benefit-list li {
    padding: 12px 0;
    font-size: 16px;
    color: #374151;
}

.timeline-table-wrapper {
    overflow-x: auto;
    margin: 32px 0;
}

.timeline-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.timeline-table th,
.timeline-table td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.timeline-table th {
    background: #f9fafb;
    font-weight: 600;
    color: #1f2937;
}

.timeline-table td {
    color: #4b5563;
}

.cost-breakdown {
    background: #f9fafb;
    padding: 32px;
    border-radius: 12px;
    margin: 32px 0;
}

.cost-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.cost-item {
    display: flex;
    gap: 12px;
    align-items: start;
}

.cost-icon {
    font-size: 24px;
}

.documents-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 32px 0;
}

.document-card {
    padding: 24px;
    background: #f9fafb;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
}

.document-card h4 {
    margin-bottom: 8px;
    color: #1f2937;
}

.pro-tips {
    background: #fef3c7;
    padding: 24px;
    border-radius: 12px;
    margin: 32px 0;
}

.pro-tips h3 {
    margin-bottom: 16px;
    color: #92400e;
}

.pro-tips ul {
    margin: 0;
}

.pro-tips li {
    margin-bottom: 12px;
    color: #78350f;
}

.step-tip {
    background: #dbeafe;
    padding: 8px 12px;
    border-radius: 6px;
    margin-top: 8px;
    font-size: 14px;
    color: #1e40af;
}

.step-warning {
    background: #fee2e2;
    padding: 8px 12px;
    border-radius: 6px;
    margin-top: 8px;
    font-size: 14px;
    color: #991b1b;
}

.bi-offices-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 32px 0;
}

.office-card {
    padding: 24px;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
}

.office-card h4 {
    margin-bottom: 12px;
    color: #1f2937;
}

.office-location,
.office-hours {
    margin-bottom: 8px;
    color: #6b7280;
    font-size: 14px;
}

.office-notes {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #e5e7eb;
    font-size: 14px;
    color: #4b5563;
    font-style: italic;
}

.office-recommendations {
    margin: 24px 0;
    padding-left: 20px;
}

.office-recommendations li {
    margin-bottom: 12px;
}

.acr-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 32px 0;
}

.acr-info-box {
    padding: 24px;
    background: #eff6ff;
    border-radius: 12px;
    border-left: 4px solid #3b82f6;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.comparison-table th,
.comparison-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.comparison-table th {
    background: #f9fafb;
    font-weight: 600;
}

.eligibility-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}
@media (max-width: 768px) {
    .eligibility-cards { grid-template-columns: 1fr; }
}

.visa-hub { padding-bottom: 50px; }

.hub-hero {
    background: #f8f9fa;
    padding: 60px 20px;
    margin-bottom: 40px;
    border-bottom: 1px solid #eee;
}

.finder-cta {
    background: white;
    max-width: 600px;
    margin: 30px auto 0;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.visa-cat-section { margin-bottom: 40px; }

.link-card-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.visa-card {
    flex: 1;
    min-width: 280px;
    max-width: 400px;
    background: white;
    padding: 25px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s, box-shadow 0.2s;
}

.visa-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.08);
    border-color: #0038a8;
}

.visa-card .icon { font-size: 2rem; display: block; margin-bottom: 10px; }
.visa-card h4 { color: #0038a8; margin: 10px 0; }