:root {
    --primary: #1a3c40;
    --primary-light: #2a5c62;
    --secondary: #c9a96e;
    --secondary-light: #dfc59a;
    --accent: #8b4513;
    --dark: #1c1917;
    --text: #374151;
    --text-light: #6b7280;
    --bg-warm: #f8f5f0;
    --bg-cream: #faf7f2;
    --bg-section: #f0ebe4;
    --border: #e5e0d8;
    --white: #ffffff;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background-color: var(--bg-warm);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
    color: var(--dark);
    line-height: 1.3;
}

h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.75rem;
}

p {
    font-family: 'Merriweather', serif;
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary);
}

#page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-inner {
    text-align: center;
}

.loader-house {
    animation: loaderPulse 1.5s ease-in-out infinite;
}

.loader-dots {
    margin-top: 16px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.loader-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--secondary);
    animation: loaderBounce 1.4s ease-in-out infinite;
}

.loader-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.loader-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes loaderPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

@keyframes loaderBounce {
    0%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
}

#mainNav {
    background: rgba(26, 60, 64, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 12px 0;
    transition: var(--transition);
    border-bottom: 1px solid rgba(201, 169, 110, 0.15);
}

#mainNav.scrolled {
    padding: 8px 0;
    background: rgba(26, 60, 64, 0.98);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white) !important;
}

.brand-text {
    color: var(--white);
}

.brand-accent {
    color: var(--secondary);
}

.navbar-toggler {
    border: none;
    padding: 8px 4px;
    background: transparent !important;
    box-shadow: none !important;
}

.navbar-toggler:focus {
    box-shadow: none !important;
}

.toggler-bar {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--secondary);
    margin: 5px auto;
    border-radius: 2px;
    transition: var(--transition);
}

.nav-link {
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.85) !important;
    padding: 8px 16px !important;
    letter-spacing: 0.3px;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--secondary);
    transform: scaleX(0);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.dropdown-menu {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 8px;
    margin-top: 8px !important;
}

.dropdown-item {
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    color: var(--text);
    transition: var(--transition);
}

.dropdown-item:hover {
    background: var(--bg-section);
    color: var(--primary);
}

.dropdown-item i {
    color: var(--secondary);
}

.offcanvas {
    background: var(--primary);
    color: var(--white);
    max-width: 320px;
}

.offcanvas-header {
    border-bottom: 1px solid rgba(201, 169, 110, 0.2);
    padding: 20px 24px;
}

.offcanvas-title {
    color: var(--white);
    font-family: 'Playfair Display', serif;
    display: flex;
    align-items: center;
}

.offcanvas .btn-close {
    filter: brightness(0) invert(1);
}

.offcanvas .nav-link {
    padding: 12px 0 !important;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.offcanvas .dropdown-menu {
    background: rgba(255,255,255,0.05);
    border: none;
    box-shadow: none;
    padding: 0 0 0 16px;
}

.offcanvas .dropdown-item {
    color: rgba(255,255,255,0.75);
    padding: 10px 12px;
}

.offcanvas .dropdown-item:hover {
    background: rgba(201, 169, 110, 0.15);
    color: var(--secondary);
}

.offcanvas-section-title {
    color: var(--secondary);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    padding-top: 8px;
    border-top: 1px solid rgba(201, 169, 110, 0.2);
}

.offcanvas-article-link {
    display: block;
    color: rgba(255,255,255,0.7);
    padding: 8px 0;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
}

.offcanvas-article-link:hover {
    color: var(--secondary);
    padding-left: 4px;
}

.hero-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--primary);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26,60,64,0.92) 0%, rgba(26,60,64,0.7) 50%, rgba(139,69,19,0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 120px 0 80px;
}

.hero-badge {
    display: inline-block;
    background: rgba(201, 169, 110, 0.2);
    border: 1px solid rgba(201, 169, 110, 0.4);
    color: var(--secondary);
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    max-width: 700px;
}

.hero-title span {
    color: var(--secondary);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    max-width: 560px;
    margin-bottom: 36px;
    font-family: 'Merriweather', serif;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--secondary);
    color: var(--primary);
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 14px 32px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: 2px solid var(--secondary);
}

.hero-btn:hover {
    background: transparent;
    color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 169, 110, 0.3);
}

.hero-btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
    margin-left: 12px;
}

.hero-btn-outline:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.hero-stats {
    margin-top: 48px;
    display: flex;
    gap: 40px;
}

.hero-stat {
    text-align: left;
}

.hero-stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary);
}

.hero-stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-padding {
    padding: 80px 0;
}

.section-bg {
    background: var(--bg-section);
}

.section-badge {
    display: inline-block;
    background: rgba(26, 60, 64, 0.08);
    color: var(--primary);
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.section-subtitle {
    max-width: 600px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.article-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
}

.article-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.article-card-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.article-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.article-card:hover .article-card-img img {
    transform: scale(1.05);
}

.article-card-category {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--primary);
    color: var(--secondary);
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 20px;
}

.article-card-body {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.article-card-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.article-card-title a {
    color: var(--dark);
}

.article-card-title a:hover {
    color: var(--primary);
}

.article-card-excerpt {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.7;
    flex-grow: 1;
    margin-bottom: 16px;
}

.article-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    color: var(--text-light);
}

.article-card-link {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.article-card-link:hover {
    color: var(--secondary);
    gap: 8px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--secondary);
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
}

.feature-icon-green {
    background: rgba(26, 60, 64, 0.1);
    color: var(--primary);
}

.feature-icon-gold {
    background: rgba(201, 169, 110, 0.15);
    color: var(--accent);
}

.feature-icon-brown {
    background: rgba(139, 69, 19, 0.1);
    color: var(--accent);
}

.feature-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-desc {
    font-size: 0.88rem;
    color: var(--text-light);
}

.cta-section {
    background: var(--primary);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(201, 169, 110, 0.08);
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(201, 169, 110, 0.05);
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-title {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 16px;
}

.cta-text {
    color: rgba(255,255,255,0.7);
    max-width: 500px;
    margin: 0 auto 28px;
}

.page-hero {
    background: var(--primary);
    padding: 140px 0 70px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(201, 169, 110, 0.08));
}

.page-hero-title {
    font-size: 2.6rem;
    color: var(--white);
    margin-bottom: 12px;
}

.page-hero-subtitle {
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    max-width: 560px;
}

.breadcrumb-custom {
    background: transparent;
    padding: 0;
    margin-bottom: 16px;
}

.breadcrumb-custom .breadcrumb-item {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
}

.breadcrumb-custom .breadcrumb-item a {
    color: var(--secondary);
}

.breadcrumb-custom .breadcrumb-item.active {
    color: rgba(255,255,255,0.6);
}

.breadcrumb-custom .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.4);
}

.article-content {
    padding: 60px 0;
}

.article-body {
    max-width: 800px;
}

.article-body h2 {
    font-size: 1.8rem;
    margin: 40px 0 16px;
    padding-top: 20px;
}

.article-body h3 {
    font-size: 1.3rem;
    margin: 30px 0 12px;
}

.article-body p {
    margin-bottom: 18px;
}

.article-body ul, .article-body ol {
    margin-bottom: 18px;
    padding-left: 20px;
}

.article-body li {
    font-family: 'Merriweather', serif;
    font-size: 0.95rem;
    margin-bottom: 8px;
    line-height: 1.8;
}

.article-body a {
    color: var(--primary);
    border-bottom: 1px solid var(--secondary);
}

.article-body a:hover {
    color: var(--secondary);
}

.article-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin: 30px 0;
    box-shadow: var(--shadow-md);
}

.article-image img {
    width: 100%;
    height: auto;
    display: block;
}

.article-image figcaption {
    background: var(--bg-section);
    padding: 10px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    color: var(--text-light);
}

.article-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    border: 1px solid var(--border);
    margin-bottom: 24px;
}

.sidebar-card h5 {
    font-size: 1rem;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--secondary);
}

.sidebar-link {
    display: block;
    padding: 10px 0;
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    color: var(--text);
    border-bottom: 1px solid var(--border);
}

.sidebar-link:last-child {
    border-bottom: none;
}

.sidebar-link:hover {
    color: var(--primary);
    padding-left: 6px;
}

.toc-list {
    list-style: none;
    padding: 0;
}

.toc-list li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
}

.toc-list li:last-child {
    border-bottom: none;
}

.toc-list a {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 8px;
}

.toc-list a:hover {
    color: var(--primary);
}

.toc-list a i {
    color: var(--secondary);
    font-size: 0.7rem;
}

.info-box {
    background: linear-gradient(135deg, rgba(26, 60, 64, 0.05), rgba(201, 169, 110, 0.08));
    border-left: 4px solid var(--secondary);
    padding: 20px 24px;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin: 24px 0;
}

.info-box p {
    margin: 0;
    font-size: 0.9rem;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.contact-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 28px;
    text-align: center;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary);
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.4rem;
}

.contact-card h5 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.contact-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 14px;
}

.contact-card a {
    color: var(--primary);
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    border-bottom: 1px solid var(--secondary);
}

.contact-card a:hover {
    color: var(--secondary);
}

.faq-section {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 16px;
}

.faq-question {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.faq-answer {
    font-size: 0.9rem;
    color: var(--text-light);
    padding-left: 16px;
    border-left: 2px solid var(--secondary);
}

.about-values {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.about-value-card {
    background: var(--white);
    padding: 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.about-value-card:hover {
    box-shadow: var(--shadow-md);
}

.about-value-icon {
    font-size: 1.6rem;
    color: var(--secondary);
    margin-bottom: 14px;
}

.about-value-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.policy-content h2 {
    font-size: 1.5rem;
    margin: 32px 0 14px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.policy-content h2:first-of-type {
    border-top: none;
}

.policy-content p {
    margin-bottom: 14px;
}

.policy-content ul {
    margin-bottom: 16px;
    padding-left: 20px;
}

.policy-content li {
    font-family: 'Merriweather', serif;
    font-size: 0.9rem;
    margin-bottom: 6px;
}

.site-footer {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
}

.footer-top {
    padding: 60px 0 40px;
}

.footer-brand {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.footer-brand-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
}

.footer-desc {
    font-size: 0.85rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.5);
}

.footer-heading {
    color: var(--secondary);
    margin-bottom: 16px;
    font-size: 0.72rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 4px;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-contact i {
    color: var(--secondary);
}

.footer-contact a {
    color: rgba(255,255,255,0.6);
}

.footer-contact a:hover {
    color: var(--secondary);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
}

.footer-copy, .footer-update {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    margin: 0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -4px 30px rgba(0,0,0,0.15);
    z-index: 9999;
    padding: 24px 0;
    border-top: 3px solid var(--secondary);
    animation: cookieSlideUp 0.4s ease;
}

@keyframes cookieSlideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-icon {
    font-size: 2rem;
    color: var(--primary);
    flex-shrink: 0;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text h6 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
    text-transform: none;
    letter-spacing: 0;
}

.cookie-text p {
    font-size: 0.82rem;
    margin: 0;
    color: var(--text-light);
    line-height: 1.6;
}

.cookie-text a {
    color: var(--primary);
    font-weight: 600;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.cookie-btn {
    font-family: 'Lato', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cookie-btn-accept {
    background: var(--primary);
    color: var(--white);
}

.cookie-btn-accept:hover {
    background: var(--primary-light);
    transform: translateY(-1px);
}

.cookie-btn-reject {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
}

.cookie-btn-reject:hover {
    border-color: var(--text);
}

.cookie-btn-essential {
    background: transparent;
    color: var(--text-light);
    border: 1px solid var(--border);
}

.cookie-btn-essential:hover {
    border-color: var(--text-light);
}

.article-date-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(201, 169, 110, 0.15);
    color: var(--accent);
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.related-articles {
    background: var(--bg-section);
    padding: 60px 0;
}

.external-link-box {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    margin: 20px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.external-link-box i {
    color: var(--secondary);
    font-size: 1.2rem;
}

.external-link-box a {
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
}

.text-gold {
    color: var(--secondary);
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 2.4rem;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 24px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .contact-cards {
        grid-template-columns: 1fr;
    }

    .about-values {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .page-hero-title {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .hero-section {
        min-height: 70vh;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-content {
        padding: 100px 0 60px;
    }

    .hero-btn {
        padding: 12px 24px;
        font-size: 0.82rem;
    }

    .hero-btn-outline {
        margin-left: 0;
        margin-top: 10px;
    }

    .section-padding {
        padding: 50px 0;
    }

    .page-hero {
        padding: 120px 0 50px;
    }

    .page-hero-title {
        font-size: 1.7rem;
    }

    .article-body h2 {
        font-size: 1.4rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-text {
        min-width: auto;
    }

    .cookie-actions {
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 575px) {
    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .contact-cards {
        gap: 16px;
    }

    .footer-top {
        padding: 40px 0 20px;
    }
}