:root {
--primary-color: #1a5f7a;
--secondary-color: #159895;
--accent-color: #57c5b6;
--dark-color: #002b36;
--light-color: #f8f9fa;
--text-color: #333333;
--text-light: #6c757d;
--border-color: #dee2e6;
--success-color: #28a745;
--warning-color: #ffc107;
--danger-color: #dc3545;
--white: #ffffff;
--shadow: 0 2px 10px rgba(0,0,0,0.1);
--shadow-lg: 0 10px 30px rgba(0,0,0,0.15);
--transition: all 0.3s ease;
--font-base-size: 16px;
}

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

html {
font-size: var(--font-base-size);
scroll-behavior: smooth;
}

body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.6;
color: var(--text-color);
background-color: var(--light-color);
overflow-x: hidden;
}

body.font-small {
--font-base-size: 14px;
}

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

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

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

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

.main-header {
background: var(--white);
box-shadow: var(--shadow);
position: sticky;
top: 0;
z-index: 1000;
}

.navigation-bar {
padding: 0;
}

.nav-container {
max-width: 1200px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
padding: 15px 20px;
}

.logo-section {
display: flex;
align-items: center;
gap: 12px;
}

.site-logo {
width: 50px;
height: 50px;
border-radius: 50%;
object-fit: cover;
}

.site-title {
font-size: 1.4rem;
font-weight: 700;
color: var(--primary-color);
}

.nav-menu {
display: flex;
list-style: none;
gap: 30px;
align-items: center;
}

.nav-menu a {
color: var(--text-color);
font-weight: 500;
padding: 8px 0;
position: relative;
}

.nav-menu a.active,
.nav-menu a:hover {
color: var(--primary-color);
}

.nav-menu a::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 0;
height: 2px;
background: var(--primary-color);
transition: width 0.3s;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
width: 100%;
}

.font-control {
background: var(--primary-color);
color: var(--white);
border: none;
padding: 8px 15px;
border-radius: 5px;
cursor: pointer;
font-weight: 600;
transition: var(--transition);
}

.font-control:hover {
background: var(--secondary-color);
transform: translateY(-2px);
}

.mobile-menu-toggle {
display: none;
flex-direction: column;
gap: 5px;
background: none;
border: none;
cursor: pointer;
}

.mobile-menu-toggle span {
width: 25px;
height: 3px;
background: var(--primary-color);
transition: var(--transition);
}

.hero-section {
position: relative;
min-height: 500px;
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
color: var(--white);
text-align: center;
padding: 100px 20px;
overflow: hidden;
}

.hero-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(0,0,0,0.3);
}

.hero-content {
position: relative;
z-index: 1;
max-width: 800px;
}

.hero-title {
font-size: 3rem;
margin-bottom: 20px;
animation: fadeInUp 0.8s;
}

.hero-subtitle {
font-size: 1.3rem;
margin-bottom: 30px;
animation: fadeInUp 1s;
}

.cta-button {
display: inline-block;
padding: 15px 40px;
border-radius: 50px;
font-weight: 600;
font-size: 1.1rem;
transition: var(--transition);
border: none;
cursor: pointer;
text-align: center;
}

.primary-cta {
background: var(--white);
color: var(--primary-color);
box-shadow: var(--shadow);
}

.primary-cta:hover {
transform: translateY(-3px);
box-shadow: var(--shadow-lg);
}

.secondary-cta {
background: var(--accent-color);
color: var(--white);
}

.secondary-cta:hover {
background: var(--secondary-color);
transform: translateY(-3px);
}

.introduction-section {
padding: 80px 0;
background: var(--white);
}

.intro-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 50px;
align-items: center;
}

.intro-text h2 {
font-size: 2.5rem;
color: var(--primary-color);
margin-bottom: 20px;
}

.intro-text p {
font-size: 1.1rem;
margin-bottom: 15px;
line-height: 1.8;
}

.intro-image img {
border-radius: 10px;
box-shadow: var(--shadow-lg);
}

.section-heading {
text-align: center;
font-size: 2.5rem;
color: var(--primary-color);
margin-bottom: 50px;
position: relative;
padding-bottom: 15px;
}

.section-heading::after {
content: '';
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 80px;
height: 4px;
background: var(--accent-color);
}

.indicators-overview {
padding: 80px 0;
background: var(--light-color);
}

.indicators-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 30px;
}

.indicator-card {
background: var(--white);
padding: 30px;
border-radius: 10px;
box-shadow: var(--shadow);
transition: var(--transition);
}

.indicator-card:hover {
transform: translateY(-10px);
box-shadow: var(--shadow-lg);
}

.indicator-icon {
color: var(--primary-color);
margin-bottom: 20px;
}

.indicator-card h3 {
color: var(--dark-color);
font-size: 1.5rem;
margin-bottom: 15px;
}

.indicator-card p {
color: var(--text-light);
margin-bottom: 20px;
}

.indicator-details {
list-style: none;
}

.indicator-details li {
padding: 8px 0;
border-bottom: 1px solid var(--border-color);
color: var(--text-color);
}

.indicator-details li:last-child {
border-bottom: none;
}

.checklist-section {
padding: 80px 0;
background: var(--white);
}

.checklist-wrapper {
max-width: 800px;
margin: 0 auto;
}

.checklist-item {
background: var(--light-color);
padding: 20px;
margin-bottom: 15px;
border-radius: 8px;
display: flex;
align-items: center;
gap: 15px;
transition: var(--transition);
}

.checklist-item:hover {
background: #e9ecef;
}

.checklist-item input[type="checkbox"] {
width: 24px;
height: 24px;
cursor: pointer;
accent-color: var(--primary-color);
}

.checklist-item label {
cursor: pointer;
font-size: 1.1rem;
flex: 1;
}

.widget-section {
padding: 80px 0;
background: var(--light-color);
}

.widget-container {
max-width: 900px;
margin: 0 auto;
}

.calendar-widget {
background: var(--white);
border-radius: 10px;
box-shadow: var(--shadow);
overflow: hidden;
}

.widget-header {
background: var(--primary-color);
color: var(--white);
padding: 20px;
}

.widget-header h3 {
font-size: 1.5rem;
}

.event-list {
padding: 20px;
}

.event-item {
padding: 20px;
margin-bottom: 15px;
border-left: 4px solid var(--border-color);
background: var(--light-color);
border-radius: 5px;
transition: var(--transition);
}

.event-item:hover {
transform: translateX(5px);
box-shadow: var(--shadow);
}

.event-item.high-impact {
border-left-color: var(--danger-color);
}

.event-item.medium-impact {
border-left-color: var(--warning-color);
}

.event-item.low-impact {
border-left-color: var(--success-color);
}

.event-time {
font-weight: 600;
color: var(--text-light);
margin-bottom: 10px;
}

.event-details {
display: flex;
align-items: center;
gap: 15px;
flex-wrap: wrap;
}

.event-flag {
font-size: 1.5rem;
}

.event-name {
font-weight: 600;
color: var(--dark-color);
flex: 1;
}

.impact-badge {
padding: 5px 12px;
border-radius: 20px;
font-size: 0.85rem;
font-weight: 600;
}

.impact-badge.high {
background: #ffe0e0;
color: var(--danger-color);
}

.impact-badge.medium {
background: #fff3cd;
color: #856404;
}

.impact-badge.low {
background: #d4edda;
color: var(--success-color);
}

.sources-section {
padding: 80px 0;
background: var(--white);
}

.sources-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 30px;
}

.source-card {
background: var(--light-color);
padding: 30px;
border-radius: 10px;
transition: var(--transition);
}

.source-card:hover {
box-shadow: var(--shadow);
transform: translateY(-5px);
}

.source-card h3 {
color: var(--primary-color);
margin-bottom: 15px;
font-size: 1.3rem;
}

.source-card p {
color: var(--text-light);
margin-bottom: 15px;
}

.source-link {
color: var(--secondary-color);
font-weight: 600;
display: inline-flex;
align-items: center;
gap: 5px;
}

.cta-section {
padding: 80px 0;
background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
color: var(--white);
text-align: center;
}

.cta-content h2 {
font-size: 2.5rem;
margin-bottom: 20px;
}

.cta-content p {
font-size: 1.2rem;
margin-bottom: 30px;
max-width: 700px;
margin-left: auto;
margin-right: auto;
}

.disclaimer-section {
padding: 60px 0;
background: var(--light-color);
}

.disclaimer-box {
background: #fff3cd;
border-left: 5px solid var(--warning-color);
padding: 30px;
border-radius: 5px;
}

.disclaimer-box h3 {
color: #856404;
margin-bottom: 15px;
font-size: 1.5rem;
}

.disclaimer-box p {
color: #856404;
line-height: 1.8;
margin-bottom: 10px;
}

.site-footer {
background: var(--dark-color);
color: #b0b0b0;
padding: 60px 0 20px;
}

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

.footer-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 40px;
margin-bottom: 40px;
}

.footer-logo {
width: 60px;
height: 60px;
border-radius: 50%;
margin-bottom: 15px;
}

.footer-description {
color: #b0b0b0;
line-height: 1.6;
margin-bottom: 20px;
}

.social-links {
display: flex;
gap: 15px;
}

.social-links a {
width: 40px;
height: 40px;
background: rgba(255,255,255,0.1);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: var(--white);
transition: var(--transition);
}

.social-links a:hover {
background: var(--primary-color);
transform: translateY(-3px);
}

.footer-column h4 {
color: var(--white);
font-size: 1.2rem;
margin-bottom: 20px;
}

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

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

.footer-links a {
color: #b0b0b0;
transition: var(--transition);
}

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

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

.footer-contact li {
display: flex;
gap: 10px;
align-items: flex-start;
margin-bottom: 15px;
color: #b0b0b0;
}

.footer-contact svg {
flex-shrink: 0;
margin-top: 3px;
}

.footer-bottom {
border-top: 1px solid rgba(255,255,255,0.1);
padding-top: 20px;
text-align: center;
}

.footer-bottom p {
color: #b0b0b0;
margin: 5px 0;
}

.cookie-consent {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--white);
box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
padding: 25px;
z-index: 10000;
transform: translateY(100%);
transition: transform 0.4s;
}

.cookie-consent.show {
transform: translateY(0);
}

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

.cookie-text h3 {
color: var(--primary-color);
margin-bottom: 10px;
}

.cookie-text p {
color: var(--text-color);
line-height: 1.6;
}

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

.cookie-buttons {
display: flex;
gap: 15px;
flex-wrap: wrap;
}

.cookie-btn {
padding: 12px 25px;
border: none;
border-radius: 5px;
cursor: pointer;
font-weight: 600;
transition: var(--transition);
}

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

.cookie-btn.accept-all:hover {
background: var(--secondary-color);
}

.cookie-btn.customize {
background: var(--light-color);
color: var(--text-color);
}

.cookie-btn.customize:hover {
background: var(--border-color);
}

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

.cookie-btn.decline:hover {
background: var(--light-color);
}

.page-header {
background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
color: var(--white);
padding: 80px 20px;
text-align: center;
}

.page-header h1 {
font-size: 3rem;
margin-bottom: 15px;
}

.page-header p {
font-size: 1.3rem;
opacity: 0.9;
}

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

.blog-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
gap: 40px;
}

.blog-card {
background: var(--white);
border-radius: 10px;
overflow: hidden;
box-shadow: var(--shadow);
transition: var(--transition);
}

.blog-card:hover {
transform: translateY(-10px);
box-shadow: var(--shadow-lg);
}

.blog-image {
position: relative;
overflow: hidden;
height: 250px;
}

.blog-image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s;
}

.blog-card:hover .blog-image img {
transform: scale(1.1);
}

.blog-category {
position: absolute;
top: 15px;
left: 15px;
background: var(--accent-color);
color: var(--white);
padding: 5px 15px;
border-radius: 20px;
font-size: 0.85rem;
font-weight: 600;
}

.blog-content {
padding: 30px;
}

.blog-content h2 {
font-size: 1.5rem;
margin-bottom: 15px;
}

.blog-content h2 a {
color: var(--dark-color);
}

.blog-content h2 a:hover {
color: var(--primary-color);
}

.blog-meta {
display: flex;
gap: 20px;
margin-bottom: 15px;
font-size: 0.9rem;
color: var(--text-light);
}

.blog-meta span {
display: flex;
align-items: center;
gap: 5px;
}

.blog-content p {
color: var(--text-light);
line-height: 1.8;
margin-bottom: 20px;
}

.read-more {
color: var(--primary-color);
font-weight: 600;
display: inline-flex;
align-items: center;
gap: 5px;
}

.newsletter-section {
padding: 80px 0;
background: var(--light-color);
}

.newsletter-box {
background: var(--white);
padding: 50px;
border-radius: 10px;
box-shadow: var(--shadow);
text-align: center;
max-width: 700px;
margin: 0 auto;
}

.newsletter-box h2 {
color: var(--primary-color);
font-size: 2rem;
margin-bottom: 15px;
}

.newsletter-box p {
color: var(--text-light);
margin-bottom: 30px;
}

.newsletter-form {
display: flex;
gap: 15px;
max-width: 500px;
margin: 0 auto;
}

.newsletter-form input {
flex: 1;
padding: 15px;
border: 2px solid var(--border-color);
border-radius: 5px;
font-size: 1rem;
}

.newsletter-form input:focus {
outline: none;
border-color: var(--primary-color);
}

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

.mission-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 50px;
align-items: center;
}

.mission-text h2 {
color: var(--primary-color);
font-size: 2.5rem;
margin-bottom: 20px;
}

.mission-text p {
font-size: 1.1rem;
line-height: 1.8;
margin-bottom: 15px;
}

.mission-image img {
border-radius: 10px;
box-shadow: var(--shadow-lg);
}

.values-section {
padding: 80px 0;
background: var(--light-color);
}

.values-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 30px;
}

.value-card {
background: var(--white);
padding: 40px 30px;
border-radius: 10px;
text-align: center;
box-shadow: var(--shadow);
transition: var(--transition);
}

.value-card:hover {
transform: translateY(-10px);
box-shadow: var(--shadow-lg);
}

.value-icon {
color: var(--primary-color);
margin-bottom: 20px;
}

.value-card h3 {
color: var(--dark-color);
font-size: 1.5rem;
margin-bottom: 15px;
}

.value-card p {
color: var(--text-light);
line-height: 1.6;
}

.team-section {
padding: 80px 0;
background: var(--white);
}

.team-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 40px;
}

.team-card {
background: var(--light-color);
border-radius: 10px;
overflow: hidden;
box-shadow: var(--shadow);
transition: var(--transition);
text-align: center;
}

.team-card:hover {
transform: translateY(-10px);
box-shadow: var(--shadow-lg);
}

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

.team-card h3 {
color: var(--primary-color);
font-size: 1.4rem;
margin: 20px 0 5px;
padding: 0 20px;
}

.team-position {
color: var(--secondary-color);
font-weight: 600;
margin-bottom: 15px;
}

.team-bio {
color: var(--text-light);
line-height: 1.6;
padding: 0 20px 20px;
}

.stats-section {
padding: 80px 0;
background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
color: var(--white);
}

.stats-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 40px;
text-align: center;
}

.stat-item {
padding: 20px;
}

.stat-number {
font-size: 3rem;
font-weight: 700;
margin-bottom: 10px;
}

.stat-label {
font-size: 1.2rem;
opacity: 0.9;
}

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

.contact-wrapper {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 50px;
}

.contact-info h2 {
color: var(--primary-color);
font-size: 2rem;
margin-bottom: 30px;
}

.contact-details {
display: flex;
flex-direction: column;
gap: 30px;
}

.contact-item {
display: flex;
gap: 20px;
}

.contact-icon {
color: var(--primary-color);
flex-shrink: 0;
}

.contact-item h3 {
color: var(--dark-color);
font-size: 1.2rem;
margin-bottom: 10px;
}

.contact-item p,
.contact-item a {
color: var(--text-light);
line-height: 1.6;
}

.social-contact {
margin-top: 30px;
}

.social-contact h3 {
color: var(--dark-color);
margin-bottom: 15px;
}

.social-links-large {
display: flex;
gap: 15px;
}

.social-links-large a {
width: 50px;
height: 50px;
background: var(--light-color);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: var(--primary-color);
transition: var(--transition);
}

.social-links-large a:hover {
background: var(--primary-color);
color: var(--white);
transform: translateY(-5px);
}

.contact-form-wrapper h2 {
color: var(--primary-color);
font-size: 2rem;
margin-bottom: 30px;
}

.contact-form {
display: flex;
flex-direction: column;
gap: 20px;
}

.form-group {
display: flex;
flex-direction: column;
}

.form-group label {
color: var(--dark-color);
font-weight: 600;
margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
padding: 12px;
border: 2px solid var(--border-color);
border-radius: 5px;
font-size: 1rem;
font-family: inherit;
transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
outline: none;
border-color: var(--primary-color);
}

.map-section {
padding: 80px 0;
background: var(--light-color);
}

.map-placeholder {
border-radius: 10px;
overflow: hidden;
box-shadow: var(--shadow);
max-height: 400px;
}

.map-placeholder img {
width: 100%;
height: 100%;
object-fit: cover;
}

.success-modal {
display: none;
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(0,0,0,0.7);
z-index: 10000;
align-items: center;
justify-content: center;
padding: 20px;
}

.success-modal.show {
display: flex;
}

.modal-content {
background: var(--white);
padding: 50px;
border-radius: 10px;
max-width: 500px;
text-align: center;
animation: modalSlideIn 0.4s;
}

.modal-icon {
color: var(--success-color);
margin-bottom: 20px;
}

.modal-content h2 {
color: var(--primary-color);
margin-bottom: 15px;
}

.modal-content p {
color: var(--text-light);
margin-bottom: 30px;
line-height: 1.6;
}

.post-content {
padding: 60px 0;
background: var(--white);
}

.post-container {
max-width: 900px;
}

.post-breadcrumbs {
color: var(--text-light);
margin-bottom: 20px;
font-size: 0.95rem;
}

.post-breadcrumbs a {
color: var(--primary-color);
}

.post-header h1 {
font-size: 2.5rem;
color: var(--dark-color);
margin-bottom: 20px;
line-height: 1.3;
}

.post-meta {
display: flex;
gap: 25px;
margin-bottom: 30px;
color: var(--text-light);
font-size: 0.95rem;
flex-wrap: wrap;
}

.post-meta span {
display: flex;
align-items: center;
gap: 8px;
}

.post-featured-image {
margin-bottom: 40px;
border-radius: 10px;
overflow: hidden;
box-shadow: var(--shadow);
}

.post-body {
font-size: 1.1rem;
line-height: 1.9;
color: var(--text-color);
}

.lead-paragraph {
font-size: 1.25rem;
color: var(--text-light);
font-weight: 400;
margin-bottom: 30px;
line-height: 1.8;
border-left: 4px solid var(--accent-color);
padding-left: 20px;
}

.post-body h2 {
font-size: 2rem;
color: var(--primary-color);
margin-top: 40px;
margin-bottom: 20px;
}

.post-body h3 {
font-size: 1.6rem;
color: var(--dark-color);
margin-top: 30px;
margin-bottom: 15px;
}

.post-body p {
margin-bottom: 20px;
}

.post-body ul {
margin: 20px 0;
padding-left: 30px;
}

.post-body li {
margin-bottom: 10px;
line-height: 1.8;
}

.post-footer {
margin-top: 60px;
padding-top: 40px;
border-top: 2px solid var(--border-color);
}

.post-share {
display: flex;
align-items: center;
gap: 20px;
margin-bottom: 30px;
}

.post-share span {
font-weight: 600;
color: var(--dark-color);
}

.post-share a {
width: 45px;
height: 45px;
background: var(--light-color);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: var(--primary-color);
transition: var(--transition);
}

.post-share a:hover {
background: var(--primary-color);
color: var(--white);
transform: translateY(-3px);
}

.post-navigation {
text-align: center;
}

.back-to-blog {
display: inline-block;
padding: 12px 30px;
background: var(--primary-color);
color: var(--white);
border-radius: 5px;
font-weight: 600;
transition: var(--transition);
}

.back-to-blog:hover {
background: var(--secondary-color);
transform: translateY(-2px);
}

@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

@keyframes modalSlideIn {
from {
opacity: 0;
transform: scale(0.8);
}
to {
opacity: 1;
transform: scale(1);
}
}

@media (max-width: 992px) {
.hero-title {
font-size: 2.2rem;
}
.hero-subtitle {
font-size: 1.1rem;
}
.intro-grid,
.mission-content,
.contact-wrapper {
grid-template-columns: 1fr;
gap: 30px;
}
.section-heading {
font-size: 2rem;
}
.blog-grid {
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
.post-header h1 {
font-size: 2rem;
}
}

@media (max-width: 768px) {
.nav-menu {
position: fixed;
top: 80px;
left: -100%;
flex-direction: column;
background: var(--white);
width: 100%;
padding: 30px;
box-shadow: var(--shadow-lg);
transition: left 0.3s;
align-items: flex-start;
}
.nav-menu.active {
left: 0;
}
.mobile-menu-toggle {
display: flex;
}
.hero-section {
padding: 60px 20px;
}
.hero-title {
font-size: 1.8rem;
}
.hero-subtitle {
font-size: 1rem;
}
.cta-button {
padding: 12px 30px;
font-size: 1rem;
}
.indicators-grid,
.sources-grid,
.values-grid,
.team-grid {
grid-template-columns: 1fr;
}
.cookie-content {
flex-direction: column;
align-items: flex-start;
}
.cookie-buttons {
width: 100%;
flex-direction: column;
}
.cookie-btn {
width: 100%;
}
.newsletter-form {
flex-direction: column;
}
.newsletter-form input,
.newsletter-form button {
width: 100%;
}
.stats-grid {
grid-template-columns: repeat(2, 1fr);
}
.post-body {
font-size: 1rem;
}
.lead-paragraph {
font-size: 1.1rem;
}
}

@media (max-width: 480px) {
.hero-title {
font-size: 1.5rem;
}
.page-header h1 {
font-size: 1.8rem;
}
.section-heading {
font-size: 1.6rem;
}
.stats-grid {
grid-template-columns: 1fr;
}
}