*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #c0392b;
    --color-primary-dark: #922b21;
    --color-primary-light: #e74c3c;
    --color-secondary: #d35400;
    --color-accent: #f39c12;
    --color-dark: #1a1a1a;
    --color-text: #2c2c2c;
    --color-text-light: #666666;
    --color-bg: #fef8f3;
    --color-bg-alt: #f5e6d3;
    --color-white: #ffffff;
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-accent: 'Playfair Display', Georgia, serif;
    --font-decorative: 'Lora', Georgia, serif;
    --shadow-sm: 0 2px 8px rgba(192,57,43,0.1);
    --shadow-md: 0 4px 16px rgba(192,57,43,0.15);
    --shadow-lg: 0 8px 32px rgba(192,57,43,0.2);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition: 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-bg);
    overflow-x: hidden;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--color-primary-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-dark);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.125rem; }

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

#page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-bg);
    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-content {
    text-align: center;
}

.loader-spinner {
    width: 48px;
    height: 48px;
    border: 3px solid var(--color-bg-alt);
    border-top-color: var(--color-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 16px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loader-content span {
    font-family: var(--font-accent);
    color: var(--color-text-light);
    font-size: 0.875rem;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(192, 57, 43, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    transition: all var(--transition);
}

.site-header.scrolled {
    padding: 8px 0;
    box-shadow: var(--shadow-md);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: auto;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-white);
}

.logo-accent {
    color: var(--color-accent);
}

.main-nav {
    display: none;
}

@media (min-width: 992px) {
    .main-nav {
        display: block;
    }
}

.nav-list {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-list a {
    color: rgba(255,255,255,0.9);
    font-weight: 500;
    font-size: 0.9375rem;
    padding: 8px 0;
    position: relative;
    transition: color var(--transition);
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width var(--transition);
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--color-white);
}

.nav-list a:hover::after,
.nav-list a.active::after {
    width: 100%;
}

.has-dropdown {
    position: relative;
}

.has-dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--color-white);
    min-width: 220px;
    padding: 12px 0;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    list-style: none;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--color-text);
    font-size: 0.875rem;
}

.dropdown-menu a:hover {
    background: var(--color-bg);
    color: var(--color-primary);
}

.dropdown-menu a::after {
    display: none;
}

.burger-menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

@media (min-width: 992px) {
    .burger-menu {
        display: none;
    }
}

.burger-line {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-white);
    border-radius: 2px;
    transition: all var(--transition);
}

.burger-menu.active .burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.burger-menu.active .burger-line:nth-child(2) {
    opacity: 0;
}

.burger-menu.active .burger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    background: var(--color-white);
    z-index: 1001;
    transition: right var(--transition);
    overflow-y: auto;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-content {
    padding: 20px;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-bg-alt);
    margin-bottom: 20px;
}

.mobile-nav-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
}

.mobile-nav-close {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--color-text-light);
    line-height: 1;
}

.mobile-nav-list {
    list-style: none;
}

.mobile-nav-list > li {
    border-bottom: 1px solid var(--color-bg-alt);
}

.mobile-nav-list > li > a,
.mobile-dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    color: var(--color-text);
    font-weight: 500;
    cursor: pointer;
}

.mobile-dropdown-menu {
    list-style: none;
    padding-left: 16px;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition);
}

.mobile-dropdown.active .mobile-dropdown-menu {
    max-height: 300px;
}

.mobile-dropdown.active .arrow {
    transform: rotate(45deg);
}

.arrow {
    transition: transform var(--transition);
}

.mobile-dropdown-menu a {
    display: block;
    padding: 12px 0;
    color: var(--color-text-light);
    font-size: 0.9375rem;
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.main-content {
    padding-top: 64px;
}

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, #922b21 0%, #c0392b 50%, #e74c3c 100%);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://upload.wikimedia.org/wikipedia/commons/thumb/8/8a/Langos.jpg/1600px-Langos.jpg') center/cover no-repeat;
    opacity: 0.25;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 24px;
}

.hero-tagline {
    display: inline-block;
    font-family: var(--font-decorative);
    font-size: 1rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 16px;
}

.hero-content h1 {
    color: var(--color-white);
    margin-bottom: 24px;
}

.hero-content h1 .highlight {
    color: var(--color-accent);
}

.hero-content p {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin: 0 auto 32px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    border: none;
}

.btn-primary {
    background: var(--color-accent);
    color: var(--color-dark);
}

.btn-primary:hover {
    background: #f5b041;
    color: var(--color-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--color-white);
    border: 2px solid rgba(255,255,255,0.6);
}

.btn-outline:hover {
    background: var(--color-white);
    color: var(--color-primary);
}

.btn-secondary {
    background: var(--color-primary);
    color: var(--color-white);
}

.btn-secondary:hover {
    background: var(--color-primary-dark);
    color: var(--color-white);
}

.btn-text {
    background: none;
    color: var(--color-primary);
    padding: 8px 0;
    font-weight: 600;
}

.btn-text:hover {
    color: var(--color-primary-dark);
}

.btn-text::after {
    content: ' →';
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255,255,255,0.7);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
}

.scroll-indicator {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 12px;
    margin: 8px auto 0;
    position: relative;
}

.scroll-indicator::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: rgba(255,255,255,0.7);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
    50% { opacity: 0.3; transform: translateX(-50%) translateY(10px); }
}

.section-label {
    display: inline-block;
    font-family: var(--font-decorative);
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.section-header {
    margin-bottom: 48px;
}

.section-header.centered {
    text-align: center;
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-header p {
    color: var(--color-text-light);
    font-size: 1.0625rem;
}

.intro-section {
    padding: 80px 0;
    background: var(--color-white);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

@media (min-width: 992px) {
    .intro-grid {
        grid-template-columns: 1.2fr 1fr;
    }
}

.intro-content h2 {
    margin-bottom: 24px;
}

.intro-content p {
    margin-bottom: 20px;
    color: var(--color-text);
}

.intro-features {
    list-style: none;
    margin-top: 32px;
}

.intro-features li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    color: var(--color-text);
}

.feature-icon {
    position: absolute;
    left: 0;
    top: 16px;
    width: 16px;
    height: 16px;
    background: var(--color-accent);
    border-radius: 50%;
}

.intro-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.intro-image img {
    width: 100%;
    height: auto;
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
    color: var(--color-white);
    padding: 8px 16px;
    font-size: 0.75rem;
    text-align: center;
}

.featured-section {
    padding: 80px 0;
    background: var(--color-bg-alt);
}

.featured-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .featured-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.featured-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.featured-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.featured-card.featured {
    grid-column: span 1;
}

@media (min-width: 1200px) {
    .featured-card.featured {
        grid-column: span 2;
        grid-row: span 1;
    }
}

.featured-image {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

.featured-card:hover .featured-image img {
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--color-accent);
    color: var(--color-dark);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
}

.featured-content {
    padding: 24px;
}

.featured-meta {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.location,
.type {
    font-size: 0.8125rem;
    color: var(--color-text-light);
    padding: 4px 12px;
    background: var(--color-bg);
    border-radius: var(--radius-sm);
}

.featured-content h3 {
    margin-bottom: 12px;
}

.featured-content p {
    color: var(--color-text-light);
    margin-bottom: 16px;
}

.featured-details {
    margin-bottom: 20px;
}

.detail {
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-bottom: 8px;
}

.stats-section {
    padding: 60px 0;
    background: var(--color-primary);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-item {
    text-align: center;
    color: var(--color-white);
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 8px;
}

.stat-label {
    display: block;
    font-size: 0.9375rem;
    opacity: 0.9;
}

.tips-section {
    padding: 80px 0;
    background: var(--color-white);
}

.tips-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.tips-content h2 {
    margin-bottom: 48px;
    text-align: center;
}

.tips-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .tips-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.tip-card {
    background: var(--color-bg);
    padding: 32px;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--color-accent);
}

.tip-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    color: var(--color-accent);
}

.tip-card h4 {
    margin-bottom: 12px;
}

.tip-card p {
    color: var(--color-text-light);
    font-size: 0.9375rem;
}

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
    text-align: center;
}

.cta-content h2 {
    color: var(--color-white);
    margin-bottom: 16px;
}

.cta-content p {
    color: rgba(255,255,255,0.9);
    font-size: 1.125rem;
    margin-bottom: 32px;
}

.page-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #922b21 0%, #c0392b 100%);
    overflow: hidden;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://upload.wikimedia.org/wikipedia/commons/thumb/8/8a/Langos.jpg/1600px-Langos.jpg') center/cover no-repeat;
    opacity: 0.2;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 24px;
}

.page-hero-label {
    display: inline-block;
    font-family: var(--font-decorative);
    font-size: 0.875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 12px;
}

.page-hero-content h1 {
    color: var(--color-white);
    margin-bottom: 16px;
}

.page-hero-content p {
    color: rgba(255,255,255,0.9);
    font-size: 1.0625rem;
}

.contact-intro {
    padding: 60px 0;
    background: var(--color-bg);
}

.contact-intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-intro-content p {
    font-size: 1.125rem;
    color: var(--color-text);
}

.contact-cards-section {
    padding: 60px 0;
    background: var(--color-white);
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .contact-cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.contact-card {
    background: var(--color-white);
    padding: 40px 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all var(--transition);
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.contact-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-card-icon svg {
    width: 48px;
    height: 48px;
}

.contact-card h3 {
    margin-bottom: 12px;
    color: var(--color-dark);
}

.contact-card p {
    color: var(--color-text-light);
    margin-bottom: 20px;
    font-size: 0.9375rem;
}

.contact-email {
    color: var(--color-primary);
    text-decoration: underline;
    font-weight: 500;
    transition: color var(--transition);
}

.contact-email:hover {
    color: var(--color-primary-dark);
}

.faq-section {
    padding: 80px 0;
    background: var(--color-bg-alt);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--color-white);
    padding: 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.faq-item h4 {
    margin-bottom: 12px;
    color: var(--color-primary);
}

.faq-item p {
    color: var(--color-text-light);
    line-height: 1.8;
}

.article-content {
    padding: 60px 0;
    background: var(--color-white);
}

.article-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.article-meta {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 2px solid var(--color-bg-alt);
    flex-wrap: wrap;
}

.article-date,
.article-category {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

.article-category {
    padding: 4px 12px;
    background: var(--color-bg-alt);
    border-radius: var(--radius-sm);
    color: var(--color-primary);
    font-weight: 600;
}

.main-article {
    color: var(--color-text);
}

.article-intro {
    font-size: 1.125rem;
    color: var(--color-text);
    margin-bottom: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--color-bg-alt);
}

.main-article h2 {
    margin-top: 48px;
    margin-bottom: 24px;
    color: var(--color-primary);
}

.main-article h3 {
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--color-dark);
}

.main-article p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.main-article ul,
.main-article ol {
    margin: 20px 0;
    padding-left: 32px;
}

.main-article li {
    margin-bottom: 12px;
    line-height: 1.8;
}

.article-image {
    margin: 40px 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.article-image img {
    width: 100%;
    height: auto;
}

.tips-box {
    background: var(--color-bg);
    padding: 32px;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--color-accent);
    margin: 32px 0;
}

.tips-box h4 {
    margin-bottom: 16px;
    color: var(--color-primary);
}

.tips-box ul {
    list-style: none;
    padding-left: 0;
}

.tips-box li {
    padding-left: 24px;
    position: relative;
    margin-bottom: 12px;
}

.tips-box li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: bold;
}

.recipe-ingredients,
.recipe-steps {
    margin: 32px 0;
}

.recipe-ingredients h4 {
    margin-bottom: 16px;
    color: var(--color-primary);
}

.recipe-ingredients ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 24px;
}

.recipe-ingredients li {
    padding-left: 24px;
    position: relative;
    margin-bottom: 8px;
}

.recipe-ingredients li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: bold;
}

.step {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--color-bg-alt);
}

.step:last-child {
    border-bottom: none;
}

.step h4 {
    margin-bottom: 12px;
    color: var(--color-primary);
}

.article-cta {
    margin-top: 60px;
    padding: 40px;
    background: var(--color-bg);
    border-radius: var(--radius-md);
    text-align: center;
}

.article-cta h3 {
    margin-bottom: 12px;
}

.article-cta p {
    margin-bottom: 24px;
    color: var(--color-text-light);
}

.cta-links {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.about-content,
.policy-content {
    padding: 60px 0;
    background: var(--color-white);
}

.about-wrapper,
.policy-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.about-section,
.policy-section {
    margin-bottom: 48px;
}

.about-section h2,
.policy-section h2 {
    margin-bottom: 24px;
    color: var(--color-primary);
}

.about-section h3,
.policy-section h3 {
    margin-top: 24px;
    margin-bottom: 16px;
}

.about-section p,
.policy-section p {
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-section ul,
.policy-section ul {
    margin: 20px 0;
    padding-left: 32px;
}

.about-section li,
.policy-section li {
    margin-bottom: 12px;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 32px;
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.value-item {
    padding: 24px;
    background: var(--color-bg);
    border-radius: var(--radius-md);
}

.value-item h4 {
    margin-bottom: 12px;
    color: var(--color-primary);
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid var(--color-bg-alt);
}

.cookie-table th {
    background: var(--color-bg);
    font-weight: 600;
    color: var(--color-primary);
}

.site-footer {
    background: var(--color-dark);
    color: rgba(255,255,255,0.8);
    padding: 60px 0 24px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.footer-section h4 {
    color: var(--color-white);
    margin-bottom: 20px;
    font-size: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section a {
    color: rgba(255,255,255,0.7);
    transition: color var(--transition);
}

.footer-section a:hover {
    color: var(--color-accent);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    text-decoration: none;
}

.footer-logo img {
    width: 32px;
    height: auto;
}

.footer-logo span {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--color-white);
}

.footer-logo .accent {
    color: var(--color-accent);
}

.footer-section p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9375rem;
    line-height: 1.7;
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.footer-bottom p {
    margin-bottom: 8px;
    color: rgba(255,255,255,0.6);
    font-size: 0.875rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-white);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    z-index: 1002;
    padding: 24px;
    transform: translateY(100%);
    transition: transform var(--transition);
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
        align-items: center;
        gap: 32px;
    }
}

.cookie-text {
    flex: 1;
}

.cookie-text h3 {
    margin-bottom: 8px;
    font-size: 1.125rem;
}

.cookie-text p {
    font-size: 0.9375rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

.cookie-text a {
    color: var(--color-primary);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
}

.cookie-accept {
    background: var(--color-primary);
    color: var(--color-white);
}

.cookie-accept:hover {
    background: var(--color-primary-dark);
}

.cookie-reject {
    background: var(--color-bg-alt);
    color: var(--color-text);
}

.cookie-reject:hover {
    background: #e8d9c4;
}

.cookie-settings {
    background: transparent;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
}

.cookie-settings:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.cookie-settings-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    z-index: 1003;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

.cookie-settings-modal.visible {
    opacity: 1;
    visibility: visible;
}

.cookie-modal-content {
    background: var(--color-white);
    border-radius: var(--radius-md);
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    border-bottom: 1px solid var(--color-bg-alt);
}

.cookie-modal-header h3 {
    margin: 0;
}

.cookie-modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--color-text-light);
    line-height: 1;
}

.cookie-modal-body {
    padding: 24px;
}

.cookie-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid var(--color-bg-alt);
}

.cookie-option:last-child {
    border-bottom: none;
}

.cookie-option-info {
    flex: 1;
}

.cookie-option-info h4 {
    margin-bottom: 8px;
    font-size: 1rem;
}

.cookie-option-info p {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

.cookie-toggle {
    position: relative;
    width: 48px;
    height: 24px;
    cursor: pointer;
}

.cookie-toggle.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-toggle input {
    display: none;
}

.toggle-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-bg-alt);
    border-radius: 24px;
    transition: background var(--transition);
}

.toggle-slider::before {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    left: 3px;
    bottom: 3px;
    background: var(--color-white);
    border-radius: 50%;
    transition: transform var(--transition);
}

.cookie-toggle input:checked + .toggle-slider {
    background: var(--color-primary);
}

.cookie-toggle input:checked + .toggle-slider::before {
    transform: translateX(24px);
}

.cookie-modal-footer {
    padding: 24px;
    border-top: 1px solid var(--color-bg-alt);
    text-align: right;
}

.cookie-save {
    background: var(--color-primary);
    color: var(--color-white);
}

.cookie-save:hover {
    background: var(--color-primary-dark);
}

@media (max-width: 767px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .intro-section,
    .featured-section,
    .tips-section {
        padding: 60px 0;
    }
    
    .contact-card {
        padding: 32px 24px;
    }
}
