@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Lato:wght@300;400;700&family=Merriweather:wght@300;400;700&family=Nunito:wght@400;600;700&display=swap');

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #2c3e50;
    --accent: #e67e22;
    --accent-dark: #ca6f1e;
    --light-bg: #f8f4ef;
    --card-bg: #ffffff;
    --text-main: #2d2d2d;
    --text-muted: #6b6b6b;
    --border: #e0d8ce;
    --header-bg: #1a252f;
    --footer-bg: #1a252f;
    --green: #27ae60;
    --radius: 12px;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-hover: 0 8px 32px rgba(0,0,0,0.14);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--light-bg);
    color: var(--text-main);
    line-height: 1.7;
    font-size: 16px;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: var(--accent-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
}

/* PAGE LOADER */
#page-loader {
    position: fixed;
    inset: 0;
    background: var(--header-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.4s ease;
}

#page-loader.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid rgba(255,255,255,0.2);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* HEADER */
header {
    background: var(--header-bg);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    height: 72px;
    max-width: 1160px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo img {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    object-fit: cover;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

.logo-sub {
    font-family: 'Lato', sans-serif;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.55);
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
}

nav.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

nav.main-nav a {
    color: rgba(255,255,255,0.8);
    font-family: 'Nunito', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-decoration: none;
    transition: color 0.2s;
    white-space: nowrap;
}

nav.main-nav a:hover,
nav.main-nav a.active {
    color: var(--accent);
}

.burger-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 6px;
}

.burger-btn span {
    display: block;
    width: 26px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.burger-btn.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.burger-btn.open span:nth-child(2) {
    opacity: 0;
}

.burger-btn.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
    display: none;
    background: #243342;
    padding: 16px 24px 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.mobile-nav.open {
    display: block;
}

.mobile-nav a {
    display: block;
    color: rgba(255,255,255,0.85);
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    text-decoration: none;
}

.mobile-nav a:last-child {
    border-bottom: none;
}

.mobile-nav a:hover {
    color: var(--accent);
}

/* HERO */
.hero {
    background: linear-gradient(135deg, #1a252f 0%, #2c3e50 50%, #34495e 100%);
    padding: 80px 24px 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="rgba(230,126,34,0.15)"/><circle cx="80" cy="40" r="1.5" fill="rgba(230,126,34,0.1)"/><circle cx="50" cy="80" r="1" fill="rgba(230,126,34,0.12)"/><circle cx="10" cy="70" r="0.8" fill="rgba(230,126,34,0.08)"/><circle cx="90" cy="85" r="1.2" fill="rgba(230,126,34,0.1)"/></svg>') repeat;
    background-size: 200px 200px;
    opacity: 0.6;
}

.hero-content {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
}

.hero-tag {
    display: inline-block;
    background: rgba(230,126,34,0.2);
    color: var(--accent);
    font-family: 'Nunito', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(230,126,34,0.3);
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 20px;
}

.hero p {
    font-family: 'Merriweather', serif;
    font-size: 1.05rem;
    color: rgba(255,255,255,0.72);
    font-weight: 300;
    max-width: 560px;
    margin: 0 auto 32px;
    line-height: 1.8;
}

.hero-cta {
    display: inline-block;
    background: var(--accent);
    color: #ffffff;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    letter-spacing: 0.3px;
}

.hero-cta:hover {
    background: var(--accent-dark);
    color: #ffffff;
    transform: translateY(-2px);
}

/* FEATURED IMAGE */
.hero-image-wrap {
    margin-top: 48px;
    border-radius: var(--radius);
    overflow: hidden;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    position: relative;
}

.hero-image-wrap img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* SECTION TITLES */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 560px;
    margin: 0 auto;
}

.section-divider {
    width: 56px;
    height: 3px;
    background: var(--accent);
    margin: 14px auto 0;
    border-radius: 2px;
}

/* ARTICLES GRID */
.articles-section {
    padding: 72px 0;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.article-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.25s, box-shadow 0.25s;
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.card-img {
    width: 100%;
    height: 210px;
    object-fit: cover;
}

.card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-tag {
    font-family: 'Nunito', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent);
    margin-bottom: 10px;
}

.card-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
    line-height: 1.4;
}

.card-body p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.65;
    flex: 1;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 18px;
    font-family: 'Nunito', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--accent);
    text-decoration: none;
    transition: gap 0.2s;
}

.card-link:hover {
    gap: 10px;
    color: var(--accent-dark);
}

.card-link::after {
    content: '→';
}

/* FEATURED SECTION */
.featured-section {
    background: linear-gradient(135deg, #2c3e50, #1a252f);
    padding: 72px 0;
}

.featured-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.featured-img {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}

.featured-img img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

.featured-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.3;
}

.featured-text p {
    color: rgba(255,255,255,0.72);
    font-size: 0.97rem;
    line-height: 1.8;
    margin-bottom: 14px;
    font-family: 'Merriweather', serif;
    font-weight: 300;
}

.featured-text .btn-outline {
    display: inline-block;
    border: 2px solid var(--accent);
    color: var(--accent);
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    margin-top: 8px;
    transition: background 0.2s, color 0.2s;
}

.featured-text .btn-outline:hover {
    background: var(--accent);
    color: #ffffff;
}

/* TIPS SECTION */
.tips-section {
    padding: 72px 0;
    background: var(--light-bg);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.tip-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 28px 28px 28px 32px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--accent);
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.tip-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.tip-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.tip-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.65;
}

/* ARTICLE PAGE */
.article-hero {
    background: linear-gradient(135deg, #1a252f, #2c3e50);
    padding: 60px 24px 50px;
    text-align: center;
}

.article-hero .breadcrumb {
    font-family: 'Nunito', sans-serif;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 16px;
}

.article-hero .breadcrumb a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
}

.article-hero .breadcrumb a:hover {
    color: var(--accent);
}

.article-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: #ffffff;
    max-width: 760px;
    margin: 0 auto 16px;
    line-height: 1.3;
}

.article-meta {
    font-family: 'Nunito', sans-serif;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.article-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 48px;
    padding: 60px 0 80px;
    align-items: start;
}

.article-content {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
}

.article-content .featured-img-article {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 32px;
}

.article-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin: 32px 0 14px;
}

.article-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary);
    margin: 24px 0 10px;
}

.article-content p {
    color: var(--text-main);
    font-size: 0.97rem;
    line-height: 1.85;
    margin-bottom: 16px;
    font-family: 'Merriweather', serif;
    font-weight: 300;
}

.article-content ul,
.article-content ol {
    padding-left: 24px;
    margin-bottom: 16px;
}

.article-content li {
    color: var(--text-main);
    font-size: 0.95rem;
    line-height: 1.75;
    margin-bottom: 6px;
    font-family: 'Merriweather', serif;
    font-weight: 300;
}

.article-content .info-box {
    background: #fff8f0;
    border-left: 4px solid var(--accent);
    border-radius: 0 8px 8px 0;
    padding: 18px 20px;
    margin: 24px 0;
}

.article-content .info-box p {
    margin: 0;
    font-size: 0.92rem;
    color: #5a4a3a;
}

.article-content .external-link {
    color: var(--green);
    font-weight: 700;
}

.article-content .external-link:hover {
    color: #1e8449;
}

.article-sidebar {
    position: sticky;
    top: 90px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sidebar-widget {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
}

.sidebar-widget h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border);
}

.sidebar-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 0;
    border-bottom: 1px solid var(--border);
    font-family: 'Nunito', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-main);
    text-decoration: none;
    transition: color 0.2s;
}

.sidebar-links a:last-child {
    border-bottom: none;
}

.sidebar-links a:hover {
    color: var(--accent);
}

.sidebar-links a::before {
    content: '▸';
    color: var(--accent);
    font-size: 0.75rem;
}

/* ABOUT PAGE */
.page-hero {
    background: linear-gradient(135deg, #1a252f, #2c3e50);
    padding: 70px 24px 60px;
    text-align: center;
}

.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 14px;
}

.page-hero p {
    color: rgba(255,255,255,0.65);
    font-size: 1rem;
    max-width: 560px;
    margin: 0 auto;
    font-family: 'Merriweather', serif;
    font-weight: 300;
}

.page-content {
    padding: 72px 0 80px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 64px;
}

.about-img {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.about-img img {
    width: 100%;
    height: 340px;
    object-fit: cover;
}

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}

.about-text p {
    color: var(--text-muted);
    font-size: 0.97rem;
    line-height: 1.85;
    margin-bottom: 14px;
    font-family: 'Merriweather', serif;
    font-weight: 300;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.value-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 28px 24px;
    box-shadow: var(--shadow);
    text-align: center;
}

.value-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.5rem;
}

.value-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.value-card p {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.65;
}

/* CONTACT PAGE */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 48px;
}

.contact-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 36px 28px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.25s, box-shadow 0.25s;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.contact-card-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.6rem;
}

.contact-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.contact-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 16px;
}

.contact-card a.contact-email {
    display: inline-block;
    background: var(--accent);
    color: #ffffff;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 0.88rem;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.2s;
}

.contact-card a.contact-email:hover {
    background: var(--accent-dark);
    color: #ffffff;
}

/* POLICY PAGE */
.policy-content {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 48px;
    box-shadow: var(--shadow);
    max-width: 820px;
    margin: 0 auto;
}

.policy-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary);
    margin: 32px 0 12px;
}

.policy-content p,
.policy-content li {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 12px;
    font-family: 'Merriweather', serif;
    font-weight: 300;
}

.policy-content ul {
    padding-left: 22px;
}

.policy-content li {
    margin-bottom: 6px;
}

/* FOOTER */
footer {
    background: var(--footer-bg);
    color: rgba(255,255,255,0.65);
    padding: 56px 0 28px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
}

.footer-brand .logo-text {
    font-size: 1.2rem;
    margin-bottom: 12px;
    display: block;
}

.footer-brand p {
    font-size: 0.88rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.5);
    max-width: 280px;
}

.footer-col h4 {
    font-family: 'Nunito', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.4);
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    color: rgba(255,255,255,0.6);
    font-size: 0.88rem;
    text-decoration: none;
    margin-bottom: 9px;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.35);
}

.footer-bottom a {
    color: rgba(255,255,255,0.45);
    font-size: 0.82rem;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--accent);
}

/* COOKIE BANNER */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a252f;
    border-top: 3px solid var(--accent);
    padding: 20px 24px;
    z-index: 1000;
    display: none;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.3);
}

#cookie-banner.visible {
    display: block;
}

.cookie-inner {
    max-width: 1160px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 260px;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
}

.cookie-text a {
    color: var(--accent);
    text-decoration: underline;
}

.cookie-btns {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btns button {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 0.88rem;
    padding: 10px 22px;
    border-radius: 6px;
    cursor: pointer;
    border: none;
    transition: background 0.2s, color 0.2s;
}

.btn-accept {
    background: var(--accent);
    color: #ffffff;
}

.btn-accept:hover {
    background: var(--accent-dark);
}

.btn-reject {
    background: transparent;
    color: rgba(255,255,255,0.6);
    border: 1px solid rgba(255,255,255,0.25) !important;
}

.btn-reject:hover {
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.9);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .featured-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .article-layout {
        grid-template-columns: 1fr;
    }

    .article-sidebar {
        position: static;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    nav.main-nav {
        display: none;
    }

    .burger-btn {
        display: flex;
    }

    .articles-grid {
        grid-template-columns: 1fr;
    }

    .tips-grid {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .article-content {
        padding: 24px 20px;
    }

    .policy-content {
        padding: 28px 20px;
    }

    .hero-image-wrap img {
        height: 240px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 56px 16px 48px;
    }

    .cookie-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-btns {
        width: 100%;
    }

    .cookie-btns button {
        flex: 1;
    }
}
