:root {
    --primary-navy: #1a365d;
    --primary-navy-light: #2c5282;
    --primary-navy-dark: #0f2441;
    --accent-amber: #d69e2e;
    --accent-amber-light: #ecc94b;
    --accent-teal: #319795;
    --bg-cream: #faf8f5;
    --bg-sage: #e8efe8;
    --bg-deep: #0f2441;
    --text-dark: #1a202c;
    --text-light: #faf8f5;
    --text-muted: #4a5568;
    --card-shadow: 0 8px 32px rgba(26, 54, 93, 0.12);
    --card-hover-shadow: 0 16px 48px rgba(26, 54, 93, 0.18);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Source Sans 3', sans-serif;
    background-color: var(--bg-cream);
    color: var(--text-dark);
    line-height: 1.7;
    font-weight: 400;
    overflow-x: hidden;
}
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.35rem); }
p {
    font-family: 'Merriweather', serif;
    font-size: 1rem;
    margin-bottom: 1rem;
}
a {
    color: var(--primary-navy);
    text-decoration: none;
    transition: var(--transition-smooth);
}
a:hover {
    color: var(--accent-amber);
}
img {
    max-width: 100%;
    height: auto;
}
#page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-deep);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
#page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}
.loader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(250, 248, 245, 0.2);
    border-top-color: var(--accent-amber);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(135deg, var(--bg-deep) 0%, var(--primary-navy-dark) 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}
.navbar-custom {
    padding: 0;
}
.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}
.logo-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--accent-amber);
    padding: 4px;
}
.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
}
.logo-accent {
    color: var(--accent-amber);
}
.nav-menu {
    display: flex;
    align-items: center;
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 0.5rem;
}
.nav-links > li {
    position: relative;
}
.nav-links a {
    display: block;
    padding: 0.75rem 1.25rem;
    color: var(--text-light);
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    transition: var(--transition-smooth);
}
.nav-links a:hover,
.nav-links a.active {
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent-amber);
}
.has-dropdown {
    position: relative;
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-deep);
    min-width: 220px;
    list-style: none;
    border-radius: 8px;
    box-shadow: var(--card-shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-smooth);
    padding: 0.5rem 0;
    z-index: 100;
}
.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-menu li a {
    padding: 0.75rem 1.5rem;
    text-transform: none;
    font-size: 0.9rem;
    border-radius: 0;
}
.dropdown-menu li a:hover {
    background: rgba(214, 158, 46, 0.15);
}
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}
.burger-line {
    width: 100%;
    height: 2px;
    background: var(--text-light);
    border-radius: 2px;
    transition: var(--transition-smooth);
}
.burger-menu.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.burger-menu.active .burger-line:nth-child(2) {
    opacity: 0;
}
.burger-menu.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 400px;
    height: 100vh;
    background: linear-gradient(180deg, var(--bg-deep) 0%, var(--primary-navy-dark) 100%);
    z-index: 1000;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    padding: 2rem;
}
.mobile-menu.active {
    right: 0;
}
.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-menu-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--accent-amber);
}
.close-menu {
    background: transparent;
    border: none;
    font-size: 2rem;
    color: var(--text-light);
    cursor: pointer;
    line-height: 1;
}
.mobile-nav-links {
    list-style: none;
}
.mobile-nav-links > li {
    margin-bottom: 0.5rem;
}
.mobile-nav-links a {
    display: block;
    padding: 1rem 0;
    color: var(--text-light);
    font-family: 'Raleway', sans-serif;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.mobile-dropdown-title {
    display: block;
    padding: 1rem 0;
    color: var(--accent-amber);
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.mobile-dropdown-menu {
    list-style: none;
    padding-left: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    margin: 0.5rem 0;
}
.mobile-dropdown-menu a {
    font-size: 1rem;
    padding: 0.75rem 1rem;
}
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    z-index: 999;
}
.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}
main {
    min-height: 100vh;
    padding-top: 80px;
}
.hero-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-deep) 0%, var(--primary-navy-dark) 50%, var(--primary-navy) 100%);
    overflow: hidden;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://upload.wikimedia.org/wikipedia/commons/thumb/8/8a/Aquila_chrysaetos_1_%28Bohuslansen%29.jpg/1280px-Aquila_chrysaetos_1_%28Bohuslansen%29.jpg') center/cover no-repeat;
    opacity: 0.25;
}
.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    padding: 2rem;
}
.hero-title {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
.hero-title .accent {
    color: var(--accent-amber);
}
.hero-subtitle {
    color: rgba(250, 248, 245, 0.9);
    font-size: clamp(1rem, 2vw, 1.25rem);
    max-width: 700px;
    margin: 0 auto 2rem;
    font-family: 'Merriweather', serif;
    font-style: italic;
}
.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent-amber);
    color: var(--bg-deep);
    padding: 1rem 2rem;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: var(--transition-smooth);
}
.hero-cta:hover {
    background: var(--accent-amber-light);
    color: var(--bg-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(214, 158, 46, 0.4);
}
.page-hero {
    position: relative;
    padding: 6rem 2rem 4rem;
    background: linear-gradient(135deg, var(--bg-deep) 0%, var(--primary-navy-dark) 100%);
    text-align: center;
}
.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://upload.wikimedia.org/wikipedia/commons/thumb/8/8a/Aquila_chrysaetos_1_%28Bohuslansen%29.jpg/1280px-Aquila_chrysaetos_1_%28Bohuslansen%29.jpg') center/cover no-repeat;
    opacity: 0.12;
}
.page-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}
.page-hero h1 {
    color: var(--text-light);
    margin-bottom: 1rem;
}
.page-hero p {
    color: rgba(250, 248, 245, 0.85);
    font-style: italic;
}
.section {
    padding: 5rem 2rem;
}
.section-alt {
    background: var(--bg-sage);
}
.section-dark {
    background: linear-gradient(135deg, var(--bg-deep) 0%, var(--primary-navy-dark) 100%);
    color: var(--text-light);
}
.container {
    max-width: 1200px;
    margin: 0 auto;
}
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}
.section-header h2 {
    margin-bottom: 1rem;
}
.section-header p {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-muted);
}
.section-dark .section-header p {
    color: rgba(250, 248, 245, 0.8);
}
.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}
.featured-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition-smooth);
}
.featured-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--card-hover-shadow);
}
.featured-card-image {
    height: 220px;
    overflow: hidden;
}
.featured-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.featured-card:hover .featured-card-image img {
    transform: scale(1.08);
}
.featured-card-content {
    padding: 1.75rem;
}
.featured-card-tag {
    display: inline-block;
    background: var(--bg-sage);
    color: var(--primary-navy);
    padding: 0.35rem 0.85rem;
    font-family: 'Raleway', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 20px;
    margin-bottom: 1rem;
}
.featured-card h3 {
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}
.featured-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
}
.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-navy);
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.card-link::after {
    content: '\2192';
    transition: transform 0.3s ease;
}
.card-link:hover::after {
    transform: translateX(4px);
}
.highlight-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.highlight-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}
.highlight-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}
.highlight-content h2 {
    margin-bottom: 1.5rem;
}
.highlight-content p {
    margin-bottom: 1rem;
}
.highlight-list {
    list-style: none;
    margin: 1.5rem 0;
}
.highlight-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    font-family: 'Merriweather', serif;
}
.highlight-list li::before {
    content: '';
    width: 24px;
    height: 24px;
    min-width: 24px;
    background: var(--accent-amber);
    border-radius: 50%;
    margin-top: 2px;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}
.stat-item h3 {
    font-size: 3rem;
    color: var(--accent-amber);
    margin-bottom: 0.5rem;
}
.stat-item p {
    font-family: 'Raleway', sans-serif;
    font-size: 0.95rem;
    color: rgba(250, 248, 245, 0.8);
    margin: 0;
}
.article-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
}
.article-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--bg-sage);
}
.article-date {
    font-family: 'Raleway', sans-serif;
    color: var(--text-muted);
    font-size: 0.9rem;
}
.article-tag {
    background: var(--primary-navy);
    color: var(--text-light);
    padding: 0.35rem 1rem;
    font-family: 'Raleway', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 20px;
}
.article-content h2 {
    margin: 2.5rem 0 1rem;
}
.article-content h3 {
    margin: 2rem 0 1rem;
}
.article-content ul,
.article-content ol {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}
.article-content li {
    margin-bottom: 0.75rem;
    font-family: 'Merriweather', serif;
}
.article-image {
    margin: 2rem 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}
.article-image img {
    width: 100%;
    height: auto;
}
.article-image figcaption {
    padding: 1rem;
    background: var(--bg-sage);
    font-family: 'Raleway', sans-serif;
    font-size: 0.9rem;
    color: var(--text-muted);
    text-align: center;
}
.tip-box {
    background: linear-gradient(135deg, var(--bg-sage) 0%, rgba(232, 239, 232, 0.5) 100%);
    border-left: 4px solid var(--primary-navy);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 12px 12px 0;
}
.tip-box h4 {
    color: var(--primary-navy);
    margin-bottom: 0.75rem;
}
.external-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-navy);
    font-weight: 500;
}
.external-link::after {
    content: '\2197';
    font-size: 0.9em;
}
.contact-hero {
    position: relative;
    padding: 6rem 2rem 4rem;
    background: linear-gradient(135deg, var(--bg-deep) 0%, var(--primary-navy-dark) 100%);
    text-align: center;
}
.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://upload.wikimedia.org/wikipedia/commons/thumb/8/8a/Aquila_chrysaetos_1_%28Bohuslansen%29.jpg/1280px-Aquila_chrysaetos_1_%28Bohuslansen%29.jpg') center/cover no-repeat;
    opacity: 0.12;
}
.contact-hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}
.contact-hero h1 {
    color: var(--text-light);
    margin-bottom: 1rem;
}
.contact-hero p {
    color: rgba(250, 248, 245, 0.85);
    font-style: italic;
}
.contact-section {
    padding: 4rem 2rem;
    background: var(--bg-cream);
}
.contact-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: var(--text-muted);
}
.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}
.contact-card {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: var(--transition-smooth);
}
.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--card-hover-shadow);
}
.contact-card-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-amber);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}
.contact-card-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--bg-deep);
}
.contact-card h3 {
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}
.contact-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}
.contact-card a {
    color: var(--primary-navy);
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    word-break: break-all;
}
.faq-section {
    padding: 4rem 2rem;
    background: var(--bg-sage);
}
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}
.faq-section h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}
.faq-item {
    margin-bottom: 1.5rem;
}
.faq-item h4 {
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}
.faq-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}
.about-intro {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.about-text h2 {
    margin-bottom: 1.5rem;
}
.about-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}
.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}
.value-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.value-card h3 {
    color: var(--accent-amber);
    margin-bottom: 1rem;
}
.value-card p {
    color: rgba(250, 248, 245, 0.8);
    margin: 0;
}
.site-footer {
    background: var(--bg-deep);
    color: var(--text-light);
    padding: 4rem 2rem 2rem;
}
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}
.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-light);
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.footer-logo-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}
.footer-logo .accent {
    color: var(--accent-amber);
}
.footer-tagline {
    color: rgba(250, 248, 245, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 300px;
}
.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.footer-column h4 {
    font-family: 'Raleway', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-amber);
    margin-bottom: 1.25rem;
}
.footer-column ul {
    list-style: none;
}
.footer-column li {
    margin-bottom: 0.75rem;
}
.footer-column a {
    color: rgba(250, 248, 245, 0.7);
    font-family: 'Raleway', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}
.footer-column a:hover {
    color: var(--accent-amber);
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
}
.footer-bottom p {
    font-family: 'Raleway', sans-serif;
    font-size: 0.85rem;
    color: rgba(250, 248, 245, 0.5);
    margin: 0;
}
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-deep);
    z-index: 9998;
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}
.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}
.cookie-text h3 {
    color: var(--accent-amber);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}
.cookie-text p {
    color: rgba(250, 248, 245, 0.8);
    font-size: 0.9rem;
    margin: 0;
    max-width: 600px;
}
.cookie-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}
.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}
.cookie-btn-accept {
    background: var(--accent-amber);
    color: var(--bg-deep);
}
.cookie-btn-accept:hover {
    background: var(--accent-amber-light);
}
.cookie-btn-reject {
    background: transparent;
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.3);
}
.cookie-btn-reject:hover {
    border-color: var(--text-light);
}
.cookie-link {
    color: var(--accent-amber);
    font-family: 'Raleway', sans-serif;
    font-size: 0.9rem;
    text-decoration: underline;
}
.policy-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
}
.policy-content h2 {
    margin: 2.5rem 0 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--bg-sage);
}
.policy-content h2:first-of-type {
    border-top: none;
    padding-top: 0;
}
.policy-content ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}
.policy-content li {
    margin-bottom: 0.5rem;
    font-family: 'Merriweather', serif;
}
@media (max-width: 1024px) {
    .highlight-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .highlight-image {
        order: -1;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-intro {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .about-image {
        order: -1;
        max-height: 400px;
    }
    .footer-main {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    .burger-menu {
        display: flex;
    }
    .hero-section {
        min-height: 60vh;
    }
    .section {
        padding: 3rem 1.5rem;
    }
    .featured-grid {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    .stat-item h3 {
        font-size: 2.25rem;
    }
    .contact-cards {
        grid-template-columns: 1fr;
    }
    .footer-links {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    .cookie-actions {
        flex-wrap: wrap;
        justify-content: center;
    }
}
@media (max-width: 480px) {
    .nav-container {
        padding: 0.75rem 1rem;
    }
    .logo-text {
        font-size: 1.25rem;
    }
    .page-hero {
        padding: 5rem 1rem 3rem;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .footer-links {
        grid-template-columns: 1fr;
    }
    .article-content {
        padding: 2rem 1rem;
    }
    .policy-content {
        padding: 2rem 1rem;
    }
}
