*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --green-dark: #2d5a27;
    --green-mid: #4a8c3f;
    --green-light: #7ab648;
    --green-pale: #e8f5e0;
    --orange-accent: #e07b39;
    --orange-light: #f5a05a;
    --cream: #faf7f0;
    --warm-white: #fffdf8;
    --text-dark: #1e2a1a;
    --text-mid: #3d4e38;
    --text-light: #6b7c65;
    --border: #d4e8c8;
    --shadow: rgba(45, 90, 39, 0.12);
    --shadow-strong: rgba(45, 90, 39, 0.22);
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Lato', sans-serif;
    --font-article: 'Merriweather', serif;
    --font-ui: 'Nunito', sans-serif;
    --radius: 12px;
    --radius-sm: 6px;
    --transition: 0.3s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--cream);
    color: var(--text-dark);
    line-height: 1.7;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--green-mid);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--green-dark);
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 0;
    background: var(--green-dark);
    color: #fff;
    padding: 8px 16px;
    z-index: 9999;
    border-radius: 0 0 var(--radius-sm) 0;
}

.skip-link:focus {
    top: 0;
}

.page-loader {
    position: fixed;
    inset: 0;
    background: var(--warm-white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9998;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-circle {
    width: 48px;
    height: 48px;
    border: 4px solid var(--border);
    border-top-color: var(--green-mid);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.site-header {
    background: var(--green-dark);
    position: sticky;
    top: 0;
    z-index: 500;
    box-shadow: 0 2px 16px var(--shadow-strong);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-leaf {
    font-size: 1.5rem;
    color: var(--green-light);
    line-height: 1;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
}

.logo-sub {
    font-family: var(--font-ui);
    font-size: 0.65rem;
    color: var(--green-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    align-self: flex-end;
    padding-bottom: 2px;
    display: none;
}

@media (min-width: 600px) {
    .logo-sub {
        display: block;
    }
}

.burger-btn {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 600;
}

.burger-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

.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);
}

@media (min-width: 900px) {
    .burger-btn {
        display: none;
    }
}

.main-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--green-dark);
    padding: 20px 24px 28px;
    box-shadow: 0 8px 24px var(--shadow-strong);
    z-index: 490;
}

.main-nav.open {
    display: block;
}

@media (min-width: 900px) {
    .main-nav {
        display: flex !important;
        position: static;
        background: none;
        padding: 0;
        box-shadow: none;
    }
}

.nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

@media (min-width: 900px) {
    .nav-list {
        flex-direction: row;
        align-items: center;
        gap: 4px;
    }
}

.nav-link {
    display: block;
    padding: 10px 14px;
    color: rgba(255,255,255,0.88);
    font-family: var(--font-ui);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: background var(--transition), color var(--transition);
    cursor: pointer;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(255,255,255,0.12);
    color: #fff;
}

.nav-dropdown {
    position: relative;
}

.dropdown-toggle::after {
    content: ' ▾';
    font-size: 0.75rem;
}

.dropdown-menu {
    list-style: none;
    background: var(--green-dark);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 4px 0 4px 16px;
}

@media (min-width: 900px) {
    .dropdown-menu {
        position: absolute;
        top: calc(100% + 8px);
        left: 0;
        min-width: 220px;
        border-top: none;
        border-radius: var(--radius);
        padding: 8px;
        box-shadow: 0 8px 24px var(--shadow-strong);
        display: none;
    }

    .nav-dropdown:hover .dropdown-menu,
    .nav-dropdown .dropdown-toggle[aria-expanded="true"] + .dropdown-menu {
        display: block;
    }
}

.dropdown-menu a {
    display: block;
    padding: 8px 12px;
    color: rgba(255,255,255,0.82);
    font-family: var(--font-ui);
    font-size: 0.9rem;
    border-radius: var(--radius-sm);
    transition: background var(--transition), color var(--transition);
}

.dropdown-menu a:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
}

main {
    flex: 1;
}

.hero {
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 60%, var(--green-light) 100%);
    padding: 80px 24px 60px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://upload.wikimedia.org/wikipedia/commons/thumb/6/6d/Good_Food_Display_-_NCI_Visuals_Online.jpg/1280px-Good_Food_Display_-_NCI_Visuals_Online.jpg') center/cover no-repeat;
    opacity: 0.18;
}

.hero-inner {
    max-width: 780px;
    margin: 0 auto;
    position: relative;
    text-align: center;
}

.hero-tag {
    display: inline-block;
    background: rgba(255,255,255,0.18);
    color: var(--green-light);
    font-family: var(--font-ui);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 5px 14px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.25);
    margin-bottom: 20px;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-lead {
    font-family: var(--font-body);
    font-size: 1.15rem;
    color: rgba(255,255,255,0.88);
    max-width: 580px;
    margin: 0 auto 32px;
    line-height: 1.8;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--orange-accent);
    color: #fff;
    font-family: var(--font-ui);
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 28px;
    border-radius: 50px;
    transition: background var(--transition), transform var(--transition);
    box-shadow: 0 4px 16px rgba(224, 123, 57, 0.4);
}

.hero-cta:hover {
    background: var(--orange-light);
    color: #fff;
    transform: translateY(-2px);
}

.section {
    padding: 64px 24px;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    margin-bottom: 40px;
}

.section-tag {
    display: inline-block;
    background: var(--green-pale);
    color: var(--green-dark);
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 700;
    color: var(--green-dark);
    line-height: 1.25;
    margin-bottom: 12px;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.05rem;
    max-width: 560px;
}

.articles-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
}

@media (min-width: 640px) {
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 960px) {
    .articles-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.article-card {
    background: var(--warm-white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 2px 12px var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px var(--shadow-strong);
}

.card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-body {
    padding: 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-tag {
    display: inline-block;
    background: var(--green-pale);
    color: var(--green-dark);
    font-family: var(--font-ui);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 3px 10px;
    border-radius: 12px;
    margin-bottom: 10px;
}

.card-body h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 10px;
}

.card-body p {
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.65;
    flex: 1;
    margin-bottom: 18px;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--green-mid);
    font-family: var(--font-ui);
    font-weight: 700;
    font-size: 0.9rem;
    transition: gap var(--transition), color var(--transition);
}

.card-link:hover {
    gap: 10px;
    color: var(--green-dark);
}

.card-link::after {
    content: '→';
}

.tips-section {
    background: var(--green-pale);
}

.tips-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}

@media (min-width: 800px) {
    .tips-layout {
        grid-template-columns: 1fr 1fr;
    }
}

.tips-img {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 8px 32px var(--shadow-strong);
}

.tips-img img {
    width: 100%;
    height: 360px;
    object-fit: cover;
}

.tips-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tips-list li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.tip-num {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: var(--green-mid);
    color: #fff;
    font-family: var(--font-ui);
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tip-text strong {
    display: block;
    font-family: var(--font-ui);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 3px;
}

.tip-text span {
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.6;
}

.featured-section {
    background: var(--warm-white);
}

.featured-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start;
}

@media (min-width: 800px) {
    .featured-layout {
        grid-template-columns: 1.1fr 0.9fr;
    }
}

.featured-img {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 6px 24px var(--shadow);
}

.featured-img img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.featured-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--green-dark);
    line-height: 1.25;
    margin-bottom: 16px;
}

.featured-content p {
    color: var(--text-mid);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 14px;
}

.featured-content .read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green-mid);
    color: #fff;
    font-family: var(--font-ui);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 12px 24px;
    border-radius: 50px;
    margin-top: 8px;
    transition: background var(--transition), transform var(--transition);
}

.featured-content .read-more:hover {
    background: var(--green-dark);
    color: #fff;
    transform: translateY(-2px);
}

.article-page {
    padding: 48px 24px 64px;
}

.article-page-inner {
    max-width: 820px;
    margin: 0 auto;
}

.article-breadcrumb {
    font-family: var(--font-ui);
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 28px;
}

.article-breadcrumb a {
    color: var(--green-mid);
}

.article-breadcrumb a:hover {
    color: var(--green-dark);
}

.article-breadcrumb span {
    margin: 0 6px;
}

.article-header {
    margin-bottom: 36px;
}

.article-header .article-tag {
    display: inline-block;
    background: var(--green-pale);
    color: var(--green-dark);
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 4px 12px;
    border-radius: 12px;
    margin-bottom: 14px;
}

.article-header h1 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--green-dark);
    line-height: 1.2;
    margin-bottom: 16px;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    color: var(--text-light);
    font-family: var(--font-ui);
    font-size: 0.88rem;
    margin-bottom: 28px;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.article-hero-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius);
    margin-bottom: 36px;
    box-shadow: 0 4px 20px var(--shadow);
}

.article-body {
    font-family: var(--font-article);
    font-size: 1.02rem;
    line-height: 1.85;
    color: var(--text-mid);
}

.article-body h2 {
    font-family: var(--font-display);
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--green-dark);
    margin: 40px 0 16px;
    line-height: 1.25;
}

.article-body h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 28px 0 12px;
}

.article-body p {
    margin-bottom: 18px;
}

.article-body ul,
.article-body ol {
    margin: 16px 0 20px 24px;
}

.article-body li {
    margin-bottom: 8px;
}

.article-body a {
    color: var(--green-mid);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.article-body a:hover {
    color: var(--green-dark);
}

.article-highlight {
    background: var(--green-pale);
    border-left: 4px solid var(--green-mid);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: 18px 22px;
    margin: 28px 0;
}

.article-highlight p {
    margin: 0;
    font-style: italic;
    color: var(--text-dark);
}

.article-img-block {
    margin: 32px 0;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 16px var(--shadow);
}

.article-img-block img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.article-img-block figcaption {
    background: var(--green-pale);
    padding: 10px 16px;
    font-family: var(--font-ui);
    font-size: 0.82rem;
    color: var(--text-light);
}

.article-related {
    margin-top: 56px;
    padding-top: 40px;
    border-top: 2px solid var(--border);
}

.article-related h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 24px;
}

.related-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 600px) {
    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.related-card {
    background: var(--warm-white);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: 0 2px 10px var(--shadow);
    transition: transform var(--transition);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.related-card:hover {
    transform: translateY(-3px);
}

.related-card h4 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
}

.related-card p {
    color: var(--text-light);
    font-size: 0.88rem;
    line-height: 1.6;
    flex: 1;
}

.related-card a {
    font-family: var(--font-ui);
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--green-mid);
}

.related-card a:hover {
    color: var(--green-dark);
}

.page-hero {
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
    padding: 56px 24px 48px;
    text-align: center;
}

.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.page-hero p {
    color: rgba(255,255,255,0.85);
    font-size: 1.05rem;
    max-width: 520px;
    margin: 0 auto;
}

.content-page {
    padding: 56px 24px 72px;
}

.content-page-inner {
    max-width: 860px;
    margin: 0 auto;
}

.content-page h2 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--green-dark);
    margin: 36px 0 14px;
}

.content-page p {
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 16px;
}

.content-page ul {
    margin: 12px 0 20px 24px;
    color: var(--text-mid);
    line-height: 1.8;
}

.content-page li {
    margin-bottom: 8px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 36px;
}

@media (min-width: 640px) {
    .contact-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.contact-card {
    background: var(--warm-white);
    border-radius: var(--radius);
    padding: 28px 24px;
    box-shadow: 0 2px 12px var(--shadow);
    text-align: center;
    border-top: 4px solid var(--green-mid);
}

.contact-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 10px;
}

.contact-card p {
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.65;
    margin: 0;
}

.contact-card a {
    color: var(--green-mid);
    font-weight: 600;
}

.contact-card a:hover {
    color: var(--green-dark);
}

.site-footer {
    background: var(--green-dark);
    color: rgba(255,255,255,0.82);
    padding: 48px 24px 0;
    margin-top: auto;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
    padding-bottom: 40px;
}

@media (min-width: 700px) {
    .footer-main {
        grid-template-columns: 1.2fr 2fr;
    }
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    display: block;
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.65);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

@media (min-width: 640px) {
    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-col h4 {
    font-family: var(--font-ui);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--green-light);
    margin-bottom: 14px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-col a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    transition: color var(--transition);
}

.footer-col a:hover {
    color: #fff;
}

.footer-col p {
    color: rgba(255,255,255,0.65);
    font-size: 0.88rem;
    line-height: 1.7;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 18px 0;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.45);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--green-dark);
    color: #fff;
    padding: 18px 24px;
    z-index: 800;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    display: none;
}

.cookie-banner.visible {
    display: block;
}

.cookie-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
}

.cookie-content p {
    flex: 1;
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.88);
    min-width: 200px;
}

.cookie-content a {
    color: var(--green-light);
}

.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 9px 20px;
    border-radius: 50px;
    font-family: var(--font-ui);
    font-weight: 700;
    font-size: 0.88rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.cookie-btn.accept {
    background: var(--green-light);
    color: var(--green-dark);
}

.cookie-btn.accept:hover {
    background: #fff;
}

.cookie-btn.reject {
    background: transparent;
    color: rgba(255,255,255,0.8);
    border-color: rgba(255,255,255,0.35);
}

.cookie-btn.reject:hover {
    border-color: #fff;
    color: #fff;
}

.cookie-btn.settings {
    background: transparent;
    color: rgba(255,255,255,0.65);
    border-color: rgba(255,255,255,0.2);
}

.cookie-btn.settings:hover {
    color: #fff;
    border-color: rgba(255,255,255,0.5);
}

.cookie-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 900;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.cookie-modal.visible {
    display: flex;
}

.modal-inner {
    background: var(--warm-white);
    border-radius: var(--radius);
    padding: 32px;
    max-width: 480px;
    width: 100%;
    box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}

.modal-inner h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 20px;
}

.cookie-option {
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border);
}

.cookie-option:last-of-type {
    border-bottom: none;
}

.cookie-option label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-ui);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
    cursor: pointer;
}

.cookie-option p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
    padding-left: 26px;
}

.modal-buttons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.modal-buttons .cookie-btn.accept {
    background: var(--green-mid);
    color: #fff;
    border-color: var(--green-mid);
}

.modal-buttons .cookie-btn.accept:hover {
    background: var(--green-dark);
    border-color: var(--green-dark);
}

.modal-buttons .cookie-btn.reject {
    color: var(--text-mid);
    border-color: var(--border);
}

.modal-buttons .cookie-btn.reject:hover {
    border-color: var(--text-mid);
    color: var(--text-dark);
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 16px 48px;
    }

    .section {
        padding: 48px 16px;
    }

    .article-page {
        padding: 32px 16px 48px;
    }

    .content-page {
        padding: 40px 16px 56px;
    }

    .article-hero-img {
        height: 240px;
    }

    .featured-img img {
        height: 260px;
    }

    .tips-img img {
        height: 240px;
    }
}
