:root {
    --primary-color: #2d5a27;
    --primary-dark: #1e3d1a;
    --secondary-color: #8bc34a;
    --accent-color: #c5e1a5;
    --dark-color: #1a2f16;
    --light-color: #e8f5e9;
    --text-color: #1a2a1a;
    --text-light: #4a5a4a;
    --white: #ffffff;
    --gradient-forest: linear-gradient(135deg, #2d5a27 0%, #4caf50 50%, #8bc34a 100%);
    --gradient-deep: linear-gradient(180deg, #1a2f16 0%, #2d5a27 100%);
    --shadow-sm: 0 2px 8px rgba(45, 90, 39, 0.1);
    --shadow-md: 0 4px 20px rgba(45, 90, 39, 0.15);
    --shadow-lg: 0 8px 40px rgba(45, 90, 39, 0.2);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    --font-accent: 'Raleway', sans-serif;
    --font-text: 'Source Sans 3', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.7;
    background-color: #f5faf5;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--dark-color);
}

p {
    font-family: var(--font-text);
    color: var(--text-light);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
}

.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-leaves {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
}

.loader-leaves span {
    width: 12px;
    height: 30px;
    background: var(--accent-color);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation: leaves 1.2s ease-in-out infinite;
    transform-origin: bottom center;
}

.loader-leaves span:nth-child(2) { animation-delay: 0.15s; }
.loader-leaves span:nth-child(3) { animation-delay: 0.3s; }
.loader-leaves span:nth-child(4) { animation-delay: 0.45s; }
.loader-leaves span:nth-child(5) { animation-delay: 0.6s; }

@keyframes leaves {
    0%, 100% { transform: rotate(-15deg) scale(0.9); }
    50% { transform: rotate(15deg) scale(1.1); }
}

.loader-text {
    color: var(--white);
    font-family: var(--font-accent);
    font-size: 1rem;
    letter-spacing: 2px;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
}

.navbar {
    padding: 0.8rem 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.brand-text {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-color);
    line-height: 1.2;
}

.brand-text small {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--primary-color);
    font-family: var(--font-accent);
    letter-spacing: 1px;
}

.navbar-toggler {
    border: none;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: transparent;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.toggler-bar {
    width: 28px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-link {
    font-family: var(--font-accent);
    font-weight: 500;
    color: var(--text-color);
    padding: 0.5rem 1rem;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-md);
    border-radius: 12px;
    padding: 0.5rem;
    margin-top: 0.5rem;
}

.dropdown-item {
    font-family: var(--font-accent);
    padding: 0.6rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: var(--light-color);
    color: var(--primary-color);
}

.offcanvas {
    background: var(--white);
}

.offcanvas-header {
    background: var(--gradient-forest);
    color: var(--white);
    padding: 1.5rem;
}

.offcanvas-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
}

.offcanvas-icon {
    width: 32px;
    height: 32px;
}

.offcanvas-header .btn-close {
    filter: brightness(0) invert(1);
}

.offcanvas-body {
    padding: 1.5rem;
}

.offcanvas-body .nav-link {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 0.25rem;
}

.offcanvas-body .nav-link:hover {
    background: var(--light-color);
}

main {
    padding-top: 80px;
}

.hero-section {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    background: var(--gradient-deep);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(26, 47, 22, 0.6) 0%, rgba(45, 90, 39, 0.4) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    padding: 4rem 0;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-family: var(--font-accent);
    font-size: 0.85rem;
    color: var(--accent-color);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--white);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-title span {
    color: var(--accent-color);
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

.stat-label {
    font-family: var(--font-accent);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 1px;
}

.section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    background: var(--light-color);
    color: var(--primary-color);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-family: var(--font-accent);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.bg-gradient {
    background: linear-gradient(180deg, #f5faf5 0%, var(--light-color) 100%);
}

.eco-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    height: 100%;
}

.eco-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.eco-card-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.eco-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.eco-card:hover .eco-card-image img {
    transform: scale(1.1);
}

.eco-card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-family: var(--font-accent);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.eco-card-content {
    padding: 1.5rem;
}

.eco-card-title {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

.eco-card-title a {
    color: var(--dark-color);
    transition: color 0.3s ease;
}

.eco-card-title a:hover {
    color: var(--primary-color);
}

.eco-card-text {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.eco-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.eco-card-link {
    font-family: var(--font-accent);
    font-weight: 500;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.eco-card-link::after {
    content: '\2192';
    transition: transform 0.3s ease;
}

.eco-card:hover .eco-card-link::after {
    transform: translateX(5px);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.info-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.info-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.info-card-icon {
    width: 80px;
    height: 80px;
    background: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.info-card-icon img {
    width: 40px;
    height: 40px;
}

.info-card-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.info-card-text {
    font-size: 0.95rem;
    line-height: 1.7;
}

.feature-section {
    position: relative;
    padding: 6rem 0;
    background: var(--gradient-deep);
    color: var(--white);
    overflow: hidden;
}

.feature-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: 30px 30px;
}

.feature-content {
    position: relative;
    z-index: 2;
}

.feature-title {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
}

.feature-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    max-width: 600px;
}

.feature-list {
    list-style: none;
    margin-top: 2rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-family: var(--font-accent);
    color: rgba(255, 255, 255, 0.9);
}

.feature-list li::before {
    content: '\2713';
    width: 28px;
    height: 28px;
    background: var(--accent-color);
    color: var(--dark-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.article-header {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: flex-end;
    background: var(--gradient-deep);
    padding-bottom: 3rem;
}

.article-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.article-header-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}

.article-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(26, 47, 22, 0.3) 0%, rgba(26, 47, 22, 0.9) 100%);
    z-index: 2;
}

.article-header-content {
    position: relative;
    z-index: 3;
}

.article-breadcrumb {
    margin-bottom: 1rem;
}

.article-breadcrumb a {
    color: var(--accent-color);
    font-family: var(--font-accent);
    font-size: 0.9rem;
}

.article-breadcrumb span {
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0.5rem;
}

.article-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--white);
    margin-bottom: 1rem;
}

.article-meta {
    display: flex;
    gap: 2rem;
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--font-accent);
    font-size: 0.9rem;
}

.article-content {
    padding: 4rem 0;
}

.article-body {
    max-width: 800px;
}

.article-body h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem;
    padding-left: 1rem;
    border-left: 4px solid var(--primary-color);
}

.article-body h3 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
}

.article-body p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.article-body ul,
.article-body ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.article-body li {
    margin-bottom: 0.75rem;
    font-family: var(--font-text);
    color: var(--text-light);
}

.article-image {
    margin: 2.5rem 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.article-image img {
    width: 100%;
    height: auto;
    display: block;
}

.article-image figcaption {
    background: var(--light-color);
    padding: 1rem 1.5rem;
    font-family: var(--font-accent);
    font-size: 0.9rem;
    color: var(--text-light);
}

.article-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background: var(--white);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    margin-bottom: 1.5rem;
}

.sidebar-title {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--light-color);
}

.sidebar-list {
    list-style: none;
}

.sidebar-list li {
    margin-bottom: 0.5rem;
}

.sidebar-list a {
    display: block;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    font-family: var(--font-accent);
    font-size: 0.9rem;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.sidebar-list a:hover {
    background: var(--light-color);
    color: var(--primary-color);
}

.quick-facts {
    background: linear-gradient(135deg, var(--light-color) 0%, #c8e6c9 100%);
}

.quick-facts-list {
    list-style: none;
}

.quick-facts-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px dashed rgba(45, 90, 39, 0.2);
    font-family: var(--font-text);
    font-size: 0.95rem;
}

.quick-facts-list li:last-child {
    border-bottom: none;
}

.quick-facts-list li span:first-child {
    color: var(--text-light);
}

.quick-facts-list li span:last-child {
    color: var(--dark-color);
    font-weight: 500;
}

.external-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: var(--light-color);
    border-radius: 8px;
    margin-bottom: 0.5rem;
    font-family: var(--font-accent);
    font-size: 0.9rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.external-link:hover {
    background: var(--primary-color);
    color: var(--white);
}

.external-link::after {
    content: '\2197';
    margin-left: auto;
}

.page-header {
    background: var(--gradient-deep);
    padding: 8rem 0 4rem;
    text-align: center;
}

.page-header-title {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--white);
    margin-bottom: 1rem;
}

.page-header-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.contact-info-section {
    padding: 4rem 0;
}

.contact-card {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow-md);
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.contact-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--light-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon img {
    width: 28px;
    height: 28px;
}

.contact-details h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.contact-details p,
.contact-details a {
    font-family: var(--font-text);
    font-size: 1rem;
    color: var(--text-light);
}

.contact-details a:hover {
    color: var(--primary-color);
}

.policy-content {
    padding: 4rem 0;
}

.policy-content h2 {
    font-size: 1.6rem;
    margin: 2.5rem 0 1rem;
    color: var(--dark-color);
}

.policy-content h3 {
    font-size: 1.3rem;
    margin: 2rem 0 1rem;
}

.policy-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.policy-content ul {
    margin: 1rem 0 1.5rem 2rem;
}

.policy-content li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
    font-family: var(--font-text);
}

.site-footer {
    background: var(--dark-color);
    color: var(--white);
    position: relative;
    margin-top: 4rem;
}

.footer-wave {
    position: absolute;
    top: -60px;
    left: 0;
    width: 100%;
    height: 60px;
    color: var(--dark-color);
}

.footer-wave svg {
    width: 100%;
    height: 100%;
}

.footer-content {
    padding: 4rem 0 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-brand img {
    width: 48px;
    height: 48px;
}

.footer-brand h4 {
    color: var(--white);
    font-size: 1.2rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-heading {
    color: var(--white);
    font-family: var(--font-accent);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--font-text);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-contact {
    margin-bottom: 1.5rem;
}

.footer-contact .contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-bottom: 0;
    border-bottom: none;
}

.footer-contact .contact-label {
    color: rgba(255, 255, 255, 0.5);
    font-family: var(--font-accent);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-contact a,
.footer-contact span {
    color: rgba(255, 255, 255, 0.9);
    font-family: var(--font-text);
    font-size: 0.95rem;
}

.footer-contact a:hover {
    color: var(--accent-color);
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    font-family: var(--font-accent);
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.update-date {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.15);
    padding: 1.5rem;
    z-index: 9998;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-text h6 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.cookie-text p {
    font-size: 0.9rem;
    margin: 0;
    max-width: 700px;
}

.cookie-text a {
    color: var(--primary-color);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.btn-cookie {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-family: var(--font-accent);
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-accept {
    background: var(--primary-color);
    color: var(--white);
}

.btn-accept:hover {
    background: var(--primary-dark);
}

.btn-reject {
    background: transparent;
    color: var(--text-color);
    border: 2px solid #ddd;
}

.btn-reject:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.animated {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 991px) {
    .hero-stats {
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    main {
        padding-top: 70px;
    }
    
    .hero-section {
        min-height: 80vh;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    
    .stat-item {
        flex: 1 1 45%;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-actions {
        width: 100%;
        justify-content: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .brand-text {
        font-size: 0.95rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .eco-card-image {
        height: 180px;
    }
    
    .contact-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
    }
}
