@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

:root {
    --near-black: #0e0f0c;
    --wise-green: #9fe870;
    --dark-green: #163300;
    --light-mint: #e2f6d5;
    --pastel-green: #cdffad;
    --warm-dark: #454745;
    --gray: #868685;
    --light-surface: #e8ebe6;
    --white: #ffffff;
    --off-white: #f7f8f5;
    --danger-red: #d03238;
    --border-ring: rgba(14,15,12,0.12);
}

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

html {
    font-feature-settings: "calt";
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', Helvetica, Arial, sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.44;
    letter-spacing: -0.108px;
    color: var(--near-black);
    background: var(--white);
    font-feature-settings: "calt";
}

a {
    color: var(--dark-green);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: var(--near-black);
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--wise-green);
    color: var(--dark-green);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.44;
    letter-spacing: -0.108px;
    font-feature-settings: "calt";
    padding: 10px 24px;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    transition: transform 0.15s ease;
    text-decoration: none;
}

.btn-primary:hover {
    transform: scale(1.05);
    color: var(--dark-green);
}

.btn-primary:active {
    transform: scale(0.95);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(22,51,0,0.08);
    color: var(--near-black);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: -0.108px;
    font-feature-settings: "calt";
    padding: 8px 16px 8px 16px;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    transition: transform 0.15s ease;
    text-decoration: none;
}

.btn-secondary:hover {
    transform: scale(1.05);
    color: var(--near-black);
}

.btn-secondary:active {
    transform: scale(0.95);
}

header.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--white);
    border-bottom: 1px solid var(--border-ring);
    padding: 0;
}

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

.site-logo {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 22px;
    font-feature-settings: "calt";
    color: var(--near-black);
    letter-spacing: -0.5px;
    text-decoration: none;
}

.site-logo span {
    display: inline-block;
    background: var(--wise-green);
    color: var(--dark-green);
    border-radius: 9999px;
    padding: 2px 10px;
    margin-right: 4px;
}

nav.site-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

nav.site-nav a {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: var(--near-black);
    padding: 8px 14px;
    border-radius: 9999px;
    transition: background 0.15s, transform 0.15s;
    font-feature-settings: "calt";
    text-decoration: none;
}

nav.site-nav a:hover {
    background: rgba(211,242,192,0.4);
    color: var(--near-black);
    transform: scale(1.03);
}

nav.site-nav a.active {
    background: var(--light-mint);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--near-black);
}

.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 12px 24px 16px;
    background: var(--white);
    border-top: 1px solid var(--border-ring);
}

.mobile-nav a {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: var(--near-black);
    padding: 10px 14px;
    border-radius: 16px;
    font-feature-settings: "calt";
    text-decoration: none;
}

.mobile-nav a:hover {
    background: var(--light-mint);
}

.mobile-nav.open {
    display: flex;
}

.hero-section {
    background: var(--off-white);
    padding: 80px 24px 64px;
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.hero-tag {
    display: inline-block;
    background: var(--light-mint);
    color: var(--dark-green);
    font-size: 14px;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 9999px;
    margin-bottom: 20px;
    font-feature-settings: "calt";
}

.hero-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: clamp(42px, 6vw, 78px);
    line-height: 1.05;
    letter-spacing: -2.34px;
    color: var(--near-black);
    font-feature-settings: "calt";
    margin-bottom: 24px;
}

.hero-title strong {
    display: block;
}

.hero-desc {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--warm-dark);
    margin-bottom: 32px;
    letter-spacing: 0.18px;
    font-feature-settings: "calt";
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-image-wrap {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: rgba(14,15,12,0.12) 0px 0px 0px 1px;
}

.hero-image-wrap img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 30px;
}

.section {
    padding: 72px 24px;
}

.section-dark {
    background: var(--near-black);
    color: var(--white);
}

.section-mint {
    background: var(--light-mint);
}

.section-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.1;
    letter-spacing: -1.5px;
    color: var(--near-black);
    font-feature-settings: "calt";
    margin-bottom: 12px;
}

.section-dark .section-title {
    color: var(--white);
}

.section-subtitle {
    font-size: 18px;
    font-weight: 400;
    color: var(--warm-dark);
    line-height: 1.5;
    margin-bottom: 48px;
    max-width: 600px;
    font-feature-settings: "calt";
}

.section-dark .section-subtitle {
    color: var(--light-surface);
}

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

.article-card {
    background: var(--white);
    border-radius: 30px;
    box-shadow: rgba(14,15,12,0.12) 0px 0px 0px 1px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s;
    text-decoration: none;
    display: block;
    color: var(--near-black);
}

.article-card:hover {
    transform: translateY(-4px);
    box-shadow: rgba(14,15,12,0.18) 0px 8px 32px;
    color: var(--near-black);
}

.article-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.article-card-body {
    padding: 24px;
}

.article-card-tag {
    display: inline-block;
    background: var(--light-mint);
    color: var(--dark-green);
    font-size: 12px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 9999px;
    margin-bottom: 12px;
    font-feature-settings: "calt";
}

.article-card-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.3;
    letter-spacing: -0.4px;
    color: var(--near-black);
    margin-bottom: 10px;
    font-feature-settings: "calt";
}

.article-card-excerpt {
    font-size: 15px;
    font-weight: 400;
    color: var(--warm-dark);
    line-height: 1.5;
    margin-bottom: 16px;
    font-feature-settings: "calt";
}

.article-card-meta {
    font-size: 13px;
    font-weight: 400;
    color: var(--gray);
    font-feature-settings: "calt";
}

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

.feature-card {
    background: rgba(255,255,255,0.06);
    border-radius: 30px;
    padding: 32px;
    box-shadow: rgba(14,15,12,0.12) 0px 0px 0px 1px;
}

.feature-card-icon {
    width: 48px;
    height: 48px;
    background: var(--wise-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-card-icon svg {
    width: 24px;
    height: 24px;
    color: var(--dark-green);
}

.feature-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 22px;
    line-height: 1.25;
    letter-spacing: -0.396px;
    color: var(--white);
    margin-bottom: 12px;
    font-feature-settings: "calt";
}

.feature-text {
    font-size: 16px;
    font-weight: 400;
    color: var(--light-surface);
    line-height: 1.6;
    font-feature-settings: "calt";
}

.contact-section {
    background: var(--off-white);
    padding: 72px 24px;
}

.contact-inner {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form {
    background: var(--white);
    border-radius: 40px;
    padding: 48px;
    box-shadow: rgba(14,15,12,0.12) 0px 0px 0px 1px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--near-black);
    margin-bottom: 8px;
    font-feature-settings: "calt";
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-ring);
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--near-black);
    background: var(--white);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    font-feature-settings: "calt";
}

.form-input:focus {
    border-color: var(--wise-green);
    box-shadow: rgb(134,134,133) 0px 0px 0px 1px inset;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-submit {
    margin-top: 8px;
}

.article-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 48px 24px 72px;
}

.article-header {
    margin-bottom: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border-ring);
}

.article-tag-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.article-tag {
    display: inline-block;
    background: var(--light-mint);
    color: var(--dark-green);
    font-size: 13px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 9999px;
    font-feature-settings: "calt";
}

.article-date {
    font-size: 13px;
    color: var(--gray);
    font-feature-settings: "calt";
}

.article-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.1;
    letter-spacing: -1.5px;
    color: var(--near-black);
    font-feature-settings: "calt";
    margin-bottom: 20px;
}

.article-lead {
    font-size: 20px;
    font-weight: 400;
    color: var(--warm-dark);
    line-height: 1.6;
    font-feature-settings: "calt";
}

.article-featured-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 40px;
    box-shadow: rgba(14,15,12,0.12) 0px 0px 0px 1px;
}

.article-content h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 26px;
    line-height: 1.23;
    letter-spacing: -0.39px;
    color: var(--near-black);
    font-feature-settings: "calt";
    margin: 40px 0 16px;
}

.article-content h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.3;
    color: var(--near-black);
    font-feature-settings: "calt";
    margin: 28px 0 12px;
}

.article-content p {
    font-size: 17px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--warm-dark);
    margin-bottom: 20px;
    font-feature-settings: "calt";
}

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

.article-content li {
    font-size: 17px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--warm-dark);
    margin-bottom: 8px;
    font-feature-settings: "calt";
}

.article-content strong {
    font-weight: 600;
    color: var(--near-black);
}

.article-content a {
    color: var(--dark-green);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.article-content a:hover {
    color: var(--near-black);
}

.article-content blockquote {
    border-left: 3px solid var(--wise-green);
    padding: 12px 20px;
    background: var(--light-mint);
    border-radius: 0 16px 16px 0;
    margin: 24px 0;
}

.article-content blockquote p {
    color: var(--dark-green);
    font-weight: 600;
    margin: 0;
}

.article-content .highlight-box {
    background: var(--off-white);
    border-radius: 20px;
    padding: 24px;
    margin: 28px 0;
    box-shadow: rgba(14,15,12,0.12) 0px 0px 0px 1px;
}

.related-articles {
    margin-top: 64px;
    padding-top: 40px;
    border-top: 1px solid var(--border-ring);
}

.related-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: var(--near-black);
    margin-bottom: 24px;
    font-feature-settings: "calt";
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.related-card {
    background: var(--off-white);
    border-radius: 20px;
    padding: 20px;
    box-shadow: rgba(14,15,12,0.12) 0px 0px 0px 1px;
    text-decoration: none;
    color: var(--near-black);
    transition: transform 0.15s;
}

.related-card:hover {
    transform: scale(1.02);
    color: var(--near-black);
}

.related-card-tag {
    font-size: 12px;
    font-weight: 600;
    color: var(--dark-green);
    margin-bottom: 8px;
    font-feature-settings: "calt";
}

.related-card-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--near-black);
    line-height: 1.3;
    font-feature-settings: "calt";
}

.page-hero {
    background: var(--off-white);
    padding: 56px 24px 48px;
}

.page-hero-inner {
    max-width: 800px;
    margin: 0 auto;
}

.page-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: clamp(36px, 4vw, 56px);
    line-height: 1.05;
    letter-spacing: -2px;
    color: var(--near-black);
    font-feature-settings: "calt";
    margin-bottom: 16px;
}

.page-lead {
    font-size: 18px;
    font-weight: 400;
    color: var(--warm-dark);
    line-height: 1.6;
    font-feature-settings: "calt";
}

.page-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 48px 24px 72px;
}

.page-content h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 26px;
    letter-spacing: -0.39px;
    color: var(--near-black);
    font-feature-settings: "calt";
    margin: 40px 0 16px;
}

.page-content h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: var(--near-black);
    font-feature-settings: "calt";
    margin: 28px 0 12px;
}

.page-content p {
    font-size: 17px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--warm-dark);
    margin-bottom: 20px;
    font-feature-settings: "calt";
}

.page-content ul, .page-content ol {
    padding-left: 24px;
    margin-bottom: 20px;
}

.page-content li {
    font-size: 17px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--warm-dark);
    margin-bottom: 8px;
    font-feature-settings: "calt";
}

.page-content strong {
    font-weight: 600;
    color: var(--near-black);
}

.page-content a {
    color: var(--dark-green);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.about-stat-box {
    background: var(--off-white);
    border-radius: 30px;
    padding: 32px;
    box-shadow: rgba(14,15,12,0.12) 0px 0px 0px 1px;
}

.about-stat {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-ring);
}

.about-stat:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.about-stat-num {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 40px;
    color: var(--dark-green);
    font-feature-settings: "calt";
    margin-bottom: 4px;
}

.about-stat-label {
    font-size: 15px;
    font-weight: 400;
    color: var(--warm-dark);
    font-feature-settings: "calt";
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 32px;
}

.team-card {
    background: var(--white);
    border-radius: 20px;
    padding: 24px;
    box-shadow: rgba(14,15,12,0.12) 0px 0px 0px 1px;
    text-align: center;
}

.team-avatar {
    width: 64px;
    height: 64px;
    background: var(--light-mint);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-green);
    font-feature-settings: "calt";
}

.team-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--near-black);
    margin-bottom: 4px;
    font-feature-settings: "calt";
}

.team-role {
    font-size: 14px;
    font-weight: 400;
    color: var(--gray);
    font-feature-settings: "calt";
}

footer.site-footer {
    background: var(--near-black);
    color: var(--white);
    padding: 56px 24px 32px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand-name {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--white);
    margin-bottom: 12px;
    font-feature-settings: "calt";
}

.footer-brand-name span {
    display: inline-block;
    background: var(--wise-green);
    color: var(--dark-green);
    border-radius: 9999px;
    padding: 2px 10px;
    margin-right: 4px;
}

.footer-tagline {
    font-size: 15px;
    font-weight: 400;
    color: var(--light-surface);
    line-height: 1.6;
    margin-bottom: 20px;
    font-feature-settings: "calt";
}

.footer-contact-item {
    font-size: 14px;
    font-weight: 400;
    color: var(--light-surface);
    margin-bottom: 6px;
    font-feature-settings: "calt";
}

.footer-contact-item a {
    color: var(--wise-green);
    text-decoration: none;
}

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

.footer-col-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    font-feature-settings: "calt";
}

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

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

.footer-col ul li a {
    font-size: 15px;
    font-weight: 400;
    color: var(--light-surface);
    text-decoration: none;
    transition: color 0.15s;
    font-feature-settings: "calt";
}

.footer-col ul li a:hover {
    color: var(--wise-green);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.1);
    gap: 16px;
    flex-wrap: wrap;
}

.footer-bottom-left {
    font-size: 14px;
    font-weight: 400;
    color: var(--gray);
    font-feature-settings: "calt";
}

.footer-bottom-right {
    display: flex;
    gap: 20px;
}

.footer-bottom-right a {
    font-size: 14px;
    font-weight: 400;
    color: var(--gray);
    text-decoration: none;
    font-feature-settings: "calt";
}

.footer-bottom-right a:hover {
    color: var(--wise-green);
}

.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    background: var(--near-black);
    color: var(--white);
    padding: 20px 28px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(14,15,12,0.3);
    max-width: 600px;
    width: calc(100% - 48px);
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--light-surface);
    font-feature-settings: "calt";
    min-width: 200px;
}

.cookie-text a {
    color: var(--wise-green);
    text-decoration: underline;
    text-underline-offset: 2px;
}

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

.cookie-accept {
    background: var(--wise-green);
    color: var(--dark-green);
    font-weight: 600;
    font-size: 15px;
    padding: 8px 20px;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    transition: transform 0.15s;
    font-feature-settings: "calt";
}

.cookie-accept:hover {
    transform: scale(1.05);
}

.cookie-reject {
    background: rgba(255,255,255,0.1);
    color: var(--white);
    font-weight: 600;
    font-size: 15px;
    padding: 8px 20px;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    transition: transform 0.15s;
    font-feature-settings: "calt";
}

.cookie-reject:hover {
    transform: scale(1.05);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 400;
    color: var(--gray);
    margin-bottom: 16px;
    font-feature-settings: "calt";
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--gray);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--near-black);
}

.breadcrumb-sep {
    color: var(--gray);
}

.disclaimer-box {
    background: var(--light-mint);
    border-radius: 16px;
    padding: 20px 24px;
    margin: 32px 0;
    font-size: 15px;
    font-weight: 400;
    color: var(--dark-green);
    line-height: 1.6;
    font-feature-settings: "calt";
}

.notice-bar {
    background: var(--wise-green);
    color: var(--dark-green);
    text-align: center;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    font-feature-settings: "calt";
}

@media (max-width: 992px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-image-wrap {
        max-height: 300px;
        overflow: hidden;
    }
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    .about-grid {
        grid-template-columns: 1fr;
    }
    nav.site-nav {
        display: none;
    }
    .mobile-menu-btn {
        display: block;
    }
}

@media (max-width: 576px) {
    .articles-grid {
        grid-template-columns: 1fr;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .footer-top {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .related-grid {
        grid-template-columns: 1fr;
    }
    .hero-title {
        font-size: 38px;
    }
    .contact-form {
        padding: 28px 20px;
    }
    .team-grid {
        grid-template-columns: 1fr;
    }
    .cookie-banner {
        bottom: 12px;
        flex-direction: column;
        align-items: flex-start;
    }
    .cookie-actions {
        width: 100%;
    }
    .cookie-accept, .cookie-reject {
        flex: 1;
        text-align: center;
    }
}
