:root {
    --primary: #2d5016;
    --primary-light: #4a7c3f;
    --primary-dark: #1e3a0f;
    --secondary: #8B6914;
    --secondary-light: #d4a843;
    --dark: #1a1a2e;
    --dark-surface: #16213e;
    --bg-warm: #f5f0e8;
    --bg-cream: #faf8f4;
    --bg-sage: #e8ede4;
    --text-main: #2c2c2c;
    --text-light: #5a5a5a;
    --text-muted: #8a8a8a;
    --border: #ddd5c8;
    --shadow: rgba(45, 80, 22, 0.12);
    --shadow-lg: rgba(0, 0, 0, 0.15);
    --radius: 12px;
    --radius-sm: 8px;
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

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

p {
    font-family: 'Lato', sans-serif;
    color: var(--text-main);
    margin-bottom: 1rem;
}

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

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

img {
    max-width: 100%;
    height: auto;
}

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

#page-loader.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.navbar-custom {
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 100%);
    padding: 0;
    box-shadow: 0 2px 20px var(--shadow-lg);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    flex-shrink: 0;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    text-decoration: none;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.nav-link:hover,
.nav-link.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.nav-dropdown {
    position: relative;
}

.dropdown-toggle::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 6px;
    vertical-align: middle;
    border-top: 5px solid;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
}

.dropdown-menu-custom {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #fff;
    border-radius: var(--radius-sm);
    box-shadow: 0 8px 30px var(--shadow-lg);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition);
    z-index: 100;
}

.nav-dropdown:hover .dropdown-menu-custom {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu-custom a {
    display: block;
    padding: 10px 20px;
    color: var(--text-main);
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    transition: all var(--transition);
}

.dropdown-menu-custom a:hover {
    background: var(--bg-sage);
    color: var(--primary);
    padding-left: 24px;
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.burger-line {
    display: block;
    width: 26px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: all var(--transition);
}

.burger-menu.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.burger-menu.active .burger-line:nth-child(2) {
    opacity: 0;
}

.burger-menu.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: linear-gradient(180deg, var(--dark) 0%, var(--primary-dark) 100%);
    z-index: 999;
    transition: right var(--transition);
    overflow-y: auto;
    padding-top: 80px;
}

.mobile-nav.open {
    right: 0;
}

.mobile-nav-inner {
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
}

.mobile-link {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all var(--transition);
    text-decoration: none;
}

.mobile-link:hover {
    color: var(--secondary-light);
    padding-left: 8px;
}

.mobile-link.sub {
    padding-left: 20px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

.mobile-link.sub:hover {
    color: var(--secondary-light);
    padding-left: 28px;
}

.mobile-nav-divider {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--secondary-light);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 20px 0 6px;
    display: block;
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

.mobile-overlay.show {
    opacity: 1;
    visibility: visible;
}

.hero-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 0;
    padding-top: 68px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(26,26,46,0.7) 0%, rgba(45,80,22,0.6) 50%, rgba(26,26,46,0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 20px;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 3.2rem;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero-content p {
    font-family: 'Merriweather', serif;
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.8;
    font-weight: 300;
}

.hero-btn {
    display: inline-block;
    padding: 14px 36px;
    background: var(--secondary);
    color: #fff;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition);
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(139, 105, 20, 0.3);
}

.hero-btn:hover {
    background: var(--secondary-light);
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 105, 20, 0.4);
}

.page-hero {
    position: relative;
    min-height: 45vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    margin-top: 0;
    padding-top: 68px;
}

.page-hero .hero-overlay {
    background: linear-gradient(180deg, rgba(26,26,46,0.75) 0%, rgba(45,80,22,0.65) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 20px;
}

.page-hero-content h1 {
    font-size: 2.6rem;
    color: #fff;
    margin-bottom: 12px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.page-hero-content p {
    font-family: 'Merriweather', serif;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

.section {
    padding: 80px 0;
}

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

.section-dark {
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 100%);
    color: #fff;
}

.section-dark h2,
.section-dark h3,
.section-dark p {
    color: #fff;
}

.section-dark p {
    color: rgba(255, 255, 255, 0.85);
}

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

.section-subtitle {
    font-family: 'Merriweather', serif;
    font-size: 1.05rem;
    color: var(--text-light);
    font-weight: 300;
    max-width: 680px;
    margin-bottom: 50px;
}

.section-subtitle.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
    margin-bottom: 20px;
}

.section-divider.center {
    margin-left: auto;
    margin-right: auto;
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

.feature-row.reverse {
    flex-direction: row-reverse;
}

.feature-img-wrapper {
    flex: 1;
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 12px 40px var(--shadow);
}

.feature-img-wrapper::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--primary-light);
    border-radius: var(--radius);
    z-index: -1;
    opacity: 0.3;
}

.feature-img-wrapper img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    border-radius: var(--radius);
    transition: transform 0.6s ease;
}

.feature-img-wrapper:hover img {
    transform: scale(1.03);
}

.feature-text {
    flex: 1;
}

.feature-text h3 {
    font-size: 1.6rem;
    margin-bottom: 14px;
}

.feature-text p {
    font-family: 'Merriweather', serif;
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 18px;
}

.feature-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: all var(--transition);
}

.feature-link:hover {
    color: var(--secondary);
    gap: 12px;
}

.feature-link svg {
    width: 18px;
    height: 18px;
    transition: transform var(--transition);
}

.feature-link:hover svg {
    transform: translateX(4px);
}

.info-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 36px 30px;
    box-shadow: 0 4px 20px var(--shadow);
    transition: all var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
    height: 100%;
}

.info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px var(--shadow);
}

.info-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.info-card-icon.green {
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
}

.info-card-icon.gold {
    background: linear-gradient(135deg, var(--secondary-light), var(--secondary));
}

.info-card-icon.dark {
    background: linear-gradient(135deg, var(--dark-surface), var(--dark));
}

.info-card-icon svg {
    width: 26px;
    height: 26px;
    fill: #fff;
}

.info-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.info-card p {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.7;
}

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

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

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

.article-body h3 {
    font-size: 1.35rem;
    margin: 35px 0 14px;
}

.article-body p {
    font-family: 'Merriweather', serif;
    font-size: 0.96rem;
    font-weight: 300;
    line-height: 1.9;
    color: var(--text-main);
    margin-bottom: 20px;
}

.article-body ul,
.article-body ol {
    font-family: 'Merriweather', serif;
    font-size: 0.96rem;
    font-weight: 300;
    line-height: 1.9;
    color: var(--text-main);
    margin-bottom: 20px;
    padding-left: 24px;
}

.article-body li {
    margin-bottom: 8px;
}

.article-body a {
    color: var(--primary);
    border-bottom: 1px solid rgba(45, 80, 22, 0.3);
    transition: all var(--transition);
}

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

.article-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    margin: 30px 0;
    box-shadow: 0 8px 30px var(--shadow);
}

.article-img-caption {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: -20px;
    margin-bottom: 30px;
    font-style: italic;
}

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

.sidebar-box {
    background: #fff;
    border-radius: var(--radius);
    padding: 28px 24px;
    box-shadow: 0 4px 20px var(--shadow);
    margin-bottom: 24px;
}

.sidebar-box h4 {
    font-size: 1.05rem;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--bg-sage);
}

.sidebar-link {
    display: block;
    padding: 10px 0;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.9rem;
    color: var(--text-light);
    border-bottom: 1px solid var(--bg-sage);
    transition: all var(--transition);
}

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

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

.sidebar-fact {
    padding: 10px 0;
    border-bottom: 1px solid var(--bg-sage);
}

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

.sidebar-fact-label {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sidebar-fact-value {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: var(--dark);
    font-weight: 600;
}

.breadcrumb-custom {
    padding: 16px 0;
    background: var(--bg-cream);
    border-bottom: 1px solid var(--border);
}

.breadcrumb-custom a {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.breadcrumb-custom span {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.85rem;
    color: var(--text-light);
}

.breadcrumb-custom .sep {
    margin: 0 8px;
    color: var(--border);
}

.contact-cards-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 70px;
}

.contact-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 20px var(--shadow);
    transition: all var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px var(--shadow);
}

.contact-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-card-icon.green {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.contact-card-icon.gold {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
}

.contact-card-icon.dark {
    background: linear-gradient(135deg, var(--dark-surface), var(--dark));
}

.contact-card-icon svg {
    width: 28px;
    height: 28px;
    fill: #fff;
}

.contact-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

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

.contact-card a.contact-email {
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 600;
    color: var(--primary);
    font-size: 0.9rem;
    border-bottom: 1px dashed var(--primary-light);
    padding-bottom: 2px;
    transition: all var(--transition);
}

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

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

.faq-item {
    margin-bottom: 24px;
    background: #fff;
    border-radius: var(--radius-sm);
    padding: 24px 28px;
    box-shadow: 0 2px 12px var(--shadow);
}

.faq-item h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-family: 'Merriweather', serif;
    font-weight: 700;
}

.faq-item p {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

.about-grid.reverse .about-img {
    order: 1;
}

.about-grid.reverse .about-text {
    order: 2;
}

.about-text h2 {
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.about-text p {
    font-family: 'Merriweather', serif;
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.85;
    color: var(--text-light);
}

.about-img {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 12px 40px var(--shadow);
}

.about-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

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

.value-card {
    text-align: center;
    padding: 30px 20px;
}

.value-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.value-card p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.value-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 12px;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
}

.policy-content h2 {
    font-size: 1.6rem;
    margin: 40px 0 14px;
}

.policy-content h3 {
    font-size: 1.2rem;
    margin: 28px 0 10px;
}

.policy-content p {
    font-family: 'Merriweather', serif;
    font-size: 0.93rem;
    font-weight: 300;
    line-height: 1.85;
    color: var(--text-light);
}

.policy-content ul {
    font-family: 'Merriweather', serif;
    font-size: 0.93rem;
    font-weight: 300;
    line-height: 1.85;
    color: var(--text-light);
    padding-left: 24px;
    margin-bottom: 20px;
}

.policy-content li {
    margin-bottom: 6px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--dark);
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    animation: slideUp 0.4s ease;
}

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

.cookie-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cookie-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.cookie-text p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 0;
    line-height: 1.6;
}

.cookie-text a {
    color: var(--secondary-light);
}

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 50px;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
}

.cookie-accept {
    background: var(--primary);
    color: #fff;
}

.cookie-accept:hover {
    background: var(--primary-light);
}

.cookie-reject {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-reject:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

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

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

.footer-col {
    margin-bottom: 30px;
}

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

.footer-brand-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
}

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

.footer-heading {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary-light);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 20px;
}

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

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

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    transition: all var(--transition);
}

.footer-links a:hover {
    color: #fff;
    padding-left: 4px;
}

.footer-contact-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
}

.footer-email {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.9rem;
    color: var(--secondary-light);
    display: inline-block;
    margin-bottom: 20px;
}

.footer-email:hover {
    color: #fff;
}

.footer-external {
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-ext-label {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-external a {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 4px;
}

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

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

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copy {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 0;
}

.footer-update {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 0;
}

.ext-badge {
    display: inline-block;
    background: var(--bg-sage);
    color: var(--text-muted);
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: 6px;
    vertical-align: middle;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.update-badge {
    display: inline-block;
    background: var(--bg-sage);
    color: var(--primary);
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
}

@media (max-width: 991px) {
    .nav-links {
        display: none;
    }

    .burger-menu {
        display: flex;
    }

    .hero-content h1 {
        font-size: 2.4rem;
    }

    .feature-row {
        flex-direction: column;
        gap: 30px;
    }

    .feature-row.reverse {
        flex-direction: column;
    }

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

    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-grid.reverse .about-img,
    .about-grid.reverse .about-text {
        order: unset;
    }

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

    .footer-bottom-inner {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

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

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .page-hero {
        min-height: 35vh;
    }

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

    .section {
        padding: 50px 0;
    }

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

    .cookie-inner {
        flex-direction: column;
        padding: 20px;
        gap: 16px;
    }

    .cookie-actions {
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
        text-align: center;
    }

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

    .contact-cards-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-img-wrapper img {
        height: 250px;
    }
}

@media (max-width: 575px) {
    .hero-content h1 {
        font-size: 1.7rem;
    }

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

    .hero-btn {
        padding: 12px 28px;
        font-size: 0.9rem;
    }
}