/* zollbestimmungen.css – Zollbestimmungen England */
:root {
    --primary-color: #0056b3;
    --secondary-color: #17a2b8;
    --accent-color: #ffc107;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --dark-color: #212529;
    --light-bg: #f8f9fa;
    --border-color: #dee2e6;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--dark-color);
    background-color: var(--light-bg);
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    text-decoration: none;
    z-index: 100;
}
.skip-link:focus {
    top: 0;
}

/* Navigation */
.navbar {
    background: white !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.navbar-brand {
    color: var(--primary-color) !important;
    font-size: 1.25rem;
}
.nav-link {
    color: var(--dark-color) !important;
    font-weight: 500;
    transition: color 0.2s;
}
.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 3rem 0 2rem;
    margin-bottom: 2rem;
}
.page-header h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

/* Content Sections */
.content-section {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 1px solid var(--border-color);
}
.content-section h2 {
    color: var(--primary-color);
    font-size: 1.6rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--light-bg);
}
.content-section h3 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

/* Limit Cards */
.limit-card {
    background: var(--light-bg);
    border-radius: 10px;
    padding: 1.25rem;
    text-align: center;
    height: 100%;
    border-left: 4px solid var(--primary-color);
    transition: transform 0.2s;
}
.limit-card:hover {
    transform: translateY(-2px);
}
.limit-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}
.limit-card h3 {
    font-size: 1rem;
    margin: 0 0 0.25rem;
}
.limit-card .amount {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Info Boxes */
.warning-box {
    background: #fff3cd;
    border-left: 4px solid var(--accent-color);
    padding: 1.25rem;
    border-radius: 0 10px 10px 0;
    margin: 1.25rem 0;
}
.danger-box {
    background: #f8d7da;
    border-left: 4px solid var(--danger-color);
    padding: 1.25rem;
    border-radius: 0 10px 10px 0;
    margin: 1.25rem 0;
}
.success-box {
    background: #d4edda;
    border-left: 4px solid var(--success-color);
    padding: 1.25rem;
    border-radius: 0 10px 10px 0;
    margin: 1.25rem 0;
}
.info-box {
    background: #d1ecf1;
    border-left: 4px solid var(--secondary-color);
    padding: 1.25rem;
    border-radius: 0 10px 10px 0;
    margin: 1.25rem 0;
}

/* Sticky TOC */
.toc {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    position: sticky;
    top: 80px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 1px solid var(--border-color);
}
.toc h4 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}
.toc ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.toc li {
    margin-bottom: 0.4rem;
}
.toc a {
    color: #6c757d;
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.2s;
}
.toc a:hover {
    color: var(--primary-color);
}

/* Images */
.content-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 0.5rem;
}
.image-credit {
    font-size: 0.75rem;
    color: #6c757d;
    text-align: right;
    margin-bottom: 1rem;
}
.image-credit a {
    color: #6c757d;
}

/* Map */
#map {
    height: 350px;
    border-radius: 8px;
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
}

/* FAQ */
.faq-section .accordion-button {
    font-weight: 600;
    color: var(--dark-color);
}
.faq-section .accordion-button:not(.collapsed) {
    background-color: rgba(0,86,179,0.05);
    color: var(--primary-color);
}

/* Footer */
footer {
    background: var(--dark-color);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 3rem;
}
footer a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.2s;
}
footer a:hover {
    color: white;
}

/* Responsive */
@media (max-width: 991px) {
    .page-header h1 {
        font-size: 1.75rem;
    }
    .toc {
        position: static;
        margin-bottom: 1.5rem;
    }
}
@media (max-width: 575px) {
    .content-section {
        padding: 1.25rem;
    }
    .limit-card {
        padding: 1rem;
    }
}
