/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a5f3f;
    --primary-hover: #0f4a2f;
    --primary-light: #2d7a57;
    --text-color: #1a202c;
    --text-light: #4a5568;
    --text-lighter: #718096;
    --bg-color: #ffffff;
    --bg-light: #f8f9fa;
    --bg-warm: #fafaf9;
    --bg-accent: #f0f7f4;
    --border-color: #e2e8f0;
    --accent-color: #38a169;
    --accent-light: #c6f6d5;
    --error-color: #e53e3e;
    --max-width: 1200px;
    --spacing: 1.5rem;
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 24px rgba(0,0,0,0.12);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.75;
    color: var(--text-color);
    background: linear-gradient(180deg, #ffffff 0%, #fafaf9 100%);
    background-attachment: fixed;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    letter-spacing: -0.025em;
}

h1 { 
    font-size: clamp(2rem, 5vw, 3rem); 
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-color) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
h2 { 
    font-size: clamp(1.75rem, 4vw, 2.25rem); 
    margin-top: 3rem;
    margin-bottom: 1.25rem;
}
h3 { 
    font-size: clamp(1.5rem, 3vw, 1.875rem); 
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}
h4 { font-size: 1.375rem; }

p {
    margin-bottom: 1.25rem;
    color: var(--text-color);
    line-height: 1.8;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s ease;
    border-bottom: 1px solid transparent;
}

a:hover {
    color: var(--primary-hover);
    border-bottom-color: var(--primary-hover);
}

a:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 3px;
    border-radius: 3px;
}

/* Lists - маркеры на уровне текста */
ul, ol {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
    padding-left: 0.5rem;
}

ul li, ol li {
    margin-bottom: 0.75rem;
    line-height: 1.8;
    color: var(--text-color);
    padding-left: 0.5rem;
}

ul {
    list-style: none;
}

ul li::before {
    content: "•";
    color: var(--accent-color);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1.5em;
    font-size: 1.2em;
    line-height: 1;
    vertical-align: baseline;
}

ol {
    counter-reset: item;
    list-style: none;
}

ol li {
    counter-increment: item;
    position: relative;
    padding-left: 2rem;
}

ol li::before {
    content: counter(item) ".";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1em;
    line-height: 1.8;
}

/* Container */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0;
    position: relative;
}

/* Header - Sticky */
header {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 250, 249, 0.95) 100%);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: box-shadow 0.3s ease;
}

header:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem var(--spacing);
    max-width: var(--max-width);
    margin: 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -0.02em;
    transition: color 0.2s ease;
}

.logo:hover {
    color: var(--primary-hover);
    border-bottom: none;
}

.logo:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 3px;
    border-radius: 3px;
}

/* Navigation */
nav {
    display: flex;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}

nav li {
    margin: 0;
    padding: 0;
}

nav li::before {
    display: none;
}

nav a {
    color: var(--text-color);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: var(--transition);
    border-bottom: none;
    font-size: 0.95rem;
}

nav a:hover {
    background-color: var(--bg-accent);
    color: var(--primary-color);
    border-bottom: none;
}

nav a.active {
    background-color: var(--primary-color);
    color: white;
    position: relative;
    overflow: visible;
    animation: activePulse 0.8s ease-out;
}

nav a.active::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border: 2px solid var(--accent-color);
    border-radius: 10px;
    opacity: 0;
    animation: activeBorder 0.8s ease-out forwards;
    z-index: -1;
}

@keyframes activeBorder {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }
    50% {
        opacity: 0.7;
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes activePulse {
    0% {
        box-shadow: 0 0 0 0 rgba(56, 161, 105, 0.4);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(56, 161, 105, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(56, 161, 105, 0);
    }
}

nav a.active:hover {
    background-color: var(--primary-hover);
    color: white;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.75rem;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--text-color);
    width: 44px;
    height: 44px;
    position: relative;
    transition: var(--transition);
    border-radius: 8px;
}

.menu-toggle:hover {
    background-color: var(--bg-accent);
}

.menu-toggle:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.menu-toggle .icon-menu,
.menu-toggle .icon-close {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.menu-toggle .icon-close {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(90deg);
}

.menu-toggle.active .icon-menu {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(-90deg);
}

.menu-toggle.active .icon-close {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(0deg);
}

/* Main Content */
main {
    min-height: calc(100vh - 200px);
    padding: 3rem 0;
    background: linear-gradient(180deg, var(--bg-color) 0%, var(--bg-warm) 100%);
    position: relative;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #e6f5ed 0%, #f0f7f4 50%, #ffffff 100%);
    padding: 5rem 0;
    margin-bottom: 4rem;
    text-align: center;
    border-bottom: 3px solid var(--accent-color);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(56, 161, 105, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(26, 95, 63, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--accent-color) 20%, var(--accent-color) 80%, transparent 100%);
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero h1 {
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-image {
    margin: 3rem 0;
    animation: fadeInUp 0.8s ease-out;
}

.hero-image img {
    width: 100%;
    max-width: 700px;
    height: auto;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Content Images - inline with text */
.content-image {
    margin: 3rem 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-color);
    animation: fadeIn 0.6s ease-out;
    position: relative;
    transition: var(--transition);
}

.content-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(56, 161, 105, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

.content-image:hover::before {
    opacity: 1;
}

.content-image:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.content-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.content-image:hover img {
    transform: scale(1.03);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Blog Layout - Cards */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    position: relative;
}

.blog-grid::before {
    content: '';
    position: absolute;
    top: -2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, var(--accent-color) 50%, transparent 100%);
    border-radius: 2px;
}

.blog-card {
    background: linear-gradient(180deg, var(--bg-color) 0%, #fafafa 100%);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent-color) 0%, var(--primary-color) 100%);
    transform: scaleY(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(56, 161, 105, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.blog-card:hover::before {
    transform: scaleY(1);
}

.blog-card:hover::after {
    opacity: 1;
}

.blog-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-6px) scale(1.02);
    border-color: var(--accent-color);
    background: linear-gradient(180deg, #ffffff 0%, #f5faf7 100%);
}

.blog-card h3 {
    margin-top: 0;
    margin-bottom: 1rem;
}

.blog-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.blog-card a {
    color: var(--primary-color);
    font-weight: 600;
    border-bottom: none;
}

.blog-card a:hover {
    color: var(--primary-hover);
}

/* Tip Box */
.tip-box {
    background: linear-gradient(135deg, #f0fff4 0%, #c6f6d5 100%);
    border-left: 5px solid var(--accent-color);
    padding: 2rem;
    margin: 3rem 0;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.tip-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color), transparent);
}

.tip-box::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(56, 161, 105, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.tip-box h3 {
    color: var(--text-color);
    margin-top: 0;
    margin-bottom: 1rem;
}

/* Disclaimer */
.disclaimer {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe5e5 100%);
    border-left: 5px solid #fc8181;
    padding: 1.5rem 2rem;
    margin: 3rem 0;
    font-size: 0.95rem;
    color: #742a2a;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.disclaimer::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(252, 129, 129, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

/* Contact Form Wrapper */
/* Contact Form Wrapper */
.contact-form-wrapper {
    max-width: 700px;
    margin: 3rem auto;
    padding: 3rem;
    background: linear-gradient(180deg, var(--bg-color) 0%, #fafafa 100%);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color) 0%, var(--primary-color) 100%);
}

.contact-form-wrapper::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(56, 161, 105, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.contact-form-wrapper h2 {
    margin-top: 0;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.contact-form-wrapper form {
    position: relative;
    z-index: 1;
}

/* Forms */
.form-group {
    margin-bottom: 1.75rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background-color: var(--bg-color);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(26, 95, 63, 0.1);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.form-group .required {
    color: var(--error-color);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: normal;
    line-height: 1.6;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn:hover {
    background: linear-gradient(135deg, var(--primary-hover) 0%, var(--primary-color) 100%);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    border-bottom: none;
}

.btn span {
    position: relative;
    z-index: 1;
}

.btn:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 3px;
    border-bottom: none;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-thankyou {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%) !important;
    color: white !important;
    border: none !important;
    border-bottom: none !important;
}

.btn-thankyou::before {
    background: rgba(255, 255, 255, 0.2) !important;
}

.btn-thankyou:hover {
    background: linear-gradient(135deg, var(--primary-hover) 0%, var(--primary-color) 100%) !important;
    color: white !important;
    border-bottom: none !important;
}

.btn-thankyou:hover::before {
    background: rgba(255, 255, 255, 0.25) !important;
}

.btn-secondary {
    background-color: var(--text-light);
    color: white;
}

.btn-secondary:hover {
    background-color: var(--text-color);
    border-bottom: none;
}

.btn-link {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: none;
    padding: 0.75rem 1.5rem;
}

.btn-link:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
    border-bottom: none;
}

.error-message {
    color: var(--error-color);
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: block;
}

.success-message {
    background-color: #c6f6d5;
    color: #22543d;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin: 2rem 0;
    border-left: 4px solid var(--accent-color);
}

/* Footer */
footer {
    background: linear-gradient(180deg, var(--bg-light) 0%, #f0f0f0 100%);
    border-top: 2px solid var(--border-color);
    padding: 3rem 0 0 0;
    margin-top: 5rem;
    text-align: center;
    color: var(--text-light);
    font-size: 0.95rem;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--accent-color) 50%, transparent 100%);
}

.footer-content {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: var(--text-light);
    border-bottom: none;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-content p:last-child {
    margin-bottom: 2rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-color);
    border-top: 1px solid var(--border-color);
    padding: 1.5rem;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.1);
    z-index: 2000;
    display: none;
    transform: translateY(0);
}

.cookie-banner.show {
    display: block;
}

.cookie-banner.hiding {
    animation: slideDown 0.4s ease-out forwards;
}

@keyframes slideDown {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(100%);
    }
}

.cookie-banner-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cookie-banner-text {
    flex: 1;
    min-width: 250px;
}

.cookie-banner-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-banner .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%) !important;
    color: white !important;
    border: none !important;
}

.cookie-banner .btn:hover {
    background: linear-gradient(135deg, var(--primary-hover) 0%, var(--primary-color) 100%) !important;
    color: white !important;
}

.cookie-banner .btn-secondary {
    background-color: #ffffff !important;
    background: #ffffff !important;
    color: #2d3748 !important;
    border: 2px solid #4a5568 !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1) !important;
    font-weight: 600;
}

.cookie-banner .btn-secondary::before {
    display: none;
}

.cookie-banner .btn-secondary:hover {
    background-color: #f7fafc !important;
    background: #f7fafc !important;
    border-color: #2d3748 !important;
    color: #1a202c !important;
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(0,0,0,0.15) !important;
}

.cookie-banner .btn-link {
    background-color: #ffffff !important;
    background: #ffffff !important;
    color: #1a5f3f !important;
    border: 2px solid #1a5f3f !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1) !important;
    font-weight: 600;
}

.cookie-banner .btn-link::before {
    display: none;
}

.cookie-banner .btn-link:hover {
    background-color: #1a5f3f !important;
    background: #1a5f3f !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(26, 95, 63, 0.3) !important;
}

/* Cookie Settings Modal */
.cookie-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5);
    z-index: 3000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    animation: fadeIn 0.3s ease;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background-color: var(--bg-color);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    animation: scaleIn 0.3s ease;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.cookie-modal-close {
    background: none;
    border: none;
    font-size: 1.75rem;
    cursor: pointer;
    color: var(--text-color);
    padding: 0.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: var(--transition);
}

.cookie-modal-close:hover {
    background-color: var(--bg-light);
}

.cookie-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    transition: var(--transition);
}

.cookie-toggle:hover {
    border-color: var(--accent-color);
}

.toggle-switch {
    position: relative;
    width: 52px;
    height: 28px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #cbd5e0;
    transition: 0.4s;
    border-radius: 28px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

input:checked + .toggle-slider {
    background-color: var(--accent-color);
}

input:checked + .toggle-slider:before {
    transform: translateX(24px);
}

/* FAQ */
.faq-item {
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    background: linear-gradient(180deg, var(--bg-color) 0%, #fafafa 100%);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.faq-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--accent-color);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.faq-item:hover::before {
    transform: scaleY(1);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
    transform: translateX(4px);
    background: linear-gradient(180deg, #ffffff 0%, #f5faf7 100%);
}

.faq-question {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-size: 1.125rem;
}

.faq-answer {
    color: var(--text-light);
    line-height: 1.8;
}

/* Sitemap */
.sitemap-list {
    list-style: none;
    padding-left: 0;
}

.sitemap-list li {
    margin-bottom: 0.75rem;
    padding-left: 2rem;
    position: relative;
}

.sitemap-list li::before {
    content: "";
    position: absolute;
    left: 0;
}

/* Article Styles */
article {
    max-width: 800px;
    margin: 0 auto;
}

article p {
    text-align: justify;
    hyphens: auto;
    position: relative;
}

article > p:first-of-type::first-letter {
    font-size: 3em;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 0.8;
    float: left;
    margin: 0.1em 0.1em 0 0;
    padding: 0.05em 0.1em;
    background: linear-gradient(135deg, var(--accent-light) 0%, transparent 100%);
    border-radius: 4px;
}

article section {
    margin-top: 2rem;
}

/* Responsive - Mobile First */
@media (max-width: 768px) {
    .container {
        padding: 0 1.25rem;
    }

    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    nav {
        position: fixed;
        top: 73px;
        left: 0;
        right: 0;
        background-color: var(--bg-color);
        border-bottom: 1px solid var(--border-color);
        padding: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, padding 0.4s ease;
        box-shadow: var(--shadow-md);
    }

    nav.active {
        max-height: 600px;
        padding: 1.5rem;
        opacity: 1;
    }

    nav ul {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
        display: flex;
        margin: 0;
        padding: 0;
        list-style: none;
    }
    
    nav ul li {
        margin: 0;
        padding: 0;
        opacity: 0;
        transform: translateX(-20px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }
    
    nav.active ul li {
        opacity: 1;
        transform: translateX(0);
    }
    
    nav.active ul li:nth-child(1) { transition-delay: 0.05s; }
    nav.active ul li:nth-child(2) { transition-delay: 0.1s; }
    nav.active ul li:nth-child(3) { transition-delay: 0.15s; }
    nav.active ul li:nth-child(4) { transition-delay: 0.2s; }
    nav.active ul li:nth-child(5) { transition-delay: 0.25s; }
    nav.active ul li:nth-child(6) { transition-delay: 0.3s; }
    nav.active ul li:nth-child(7) { transition-delay: 0.35s; }
    nav.active ul li:nth-child(8) { transition-delay: 0.4s; }

    nav a {
        display: block;
        padding: 1rem;
        border-radius: 8px;
        position: relative;
    }
    
    nav a.active {
        background-color: var(--primary-color);
        color: white;
    }

    .hero {
        padding: 3rem 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .cookie-banner-content {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-banner-actions {
        flex-direction: column;
    }

    .cookie-banner-actions .btn {
        width: 100%;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    :root {
        --spacing: 1rem;
    }

    .container {
        padding: 0 1rem;
    }

    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }

    .hero {
        padding: 2rem 0;
    }
}
