:root {
  --primary-color: #4caf50;
  --primary-dark: #388e3c;
  --secondary-color: #8bc34a;
  --accent-color: #ffc107;
  --background-color: #ffe5c4;
  --text-color: #40b300;
  --text-light: #666666;
  --white: #ffffff;
  --border-color: #e0e0e0;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --border-radius: 8px;
}

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

/* Force background and text colors everywhere */
html {
  background-color: #ffe5c4 !important;
}

body {
  font-family: "Inclusive Sans", sans-serif;
  background-color: #ffe5c4 !important;
  color: #40b300 !important;
  line-height: 1.6;
  min-height: 100vh;
}

/* Override Pico.css defaults */
body,
main,
section,
div,
header,
footer,
nav {
  background-color: #ffe5c4 !important;
  color: #40b300 !important;
}

/* Ensure all text elements use the green color */
h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
a,
li,
button {
  color: #40b300 !important;
}

/* Hide any canvas elements that might be interfering */
canvas {
  display: none !important;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  background-color: #ffe5c4 !important;
}

.header {
  background-color: #ffe5c4 !important;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow);
}

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

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-logo-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.header-logo-text {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--primary-color);
}

.header-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.header-menu a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  transition: color 0.3s ease;
}

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

.hero {
  padding: 4rem 0;
  background-color: var(--background-color);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  background-color: #ffe5c4 !important;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-color);
  margin-bottom: 1rem;
}

.hero-subdescription {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.hero-button {
  background-color: #40b300 !important;
  color: #ffe5c4 !important;
  padding: 1rem 2rem;
  border: none;
  border-radius: var(--border-radius);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.hero-button:hover {
  background-color: var(--primary-dark);
}

.hero-illustration {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
}

.mechanisms {
  padding: 4rem 0;
  background-color: #ffe5c4 !important;
}

.mechanisms-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  background-color: #ffe5c4 !important;
}

.mechanisms-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.mechanisms-description {
  font-size: 1.1rem;
  color: var(--text-color);
  margin-bottom: 2rem;
}

.mechanisms-button {
  background-color: #40b300 !important;
  color: #ffe5c4 !important;
  padding: 1rem 2rem;
  border: none;
  border-radius: var(--border-radius);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.mechanisms-button:hover {
  background-color: var(--primary-dark);
}

.mechanisms-illustration {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
}

.gallery-preview {
  padding: 4rem 0;
  background-color: var(--background-color);
}

.gallery-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 3rem;
}

.gallery-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.gallery-item {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
  background-color: #ffe5c4 !important;
  border-color: #40b300 !important;
}

.gallery-item:hover {
  transform: translateY(-5px);
}

.gallery-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.5rem 1rem;
  border: 2px solid var(--primary-color);
  background-color: transparent;
  color: var(--primary-color);
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: #ffe5c4 !important;
  border-color: #40b300 !important;
}

.filter-btn.active,
.filter-btn:hover {
  background-color: #40b300 !important;
  color: #ffe5c4 !important;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: var(--white);
  padding: 2rem 1rem 1rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.gallery-info {
  margin-top: 4rem;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.info-item {
  padding: 2rem;
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.info-item h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.news {
  padding: 4rem 0;
  background-color: #ffe5c4 !important;
}

.news-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 3rem;
}

.news-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.news-item {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background-color: #ffe5c4 !important;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  border-color: #40b300 !important;
}

.news-icon {
  font-size: 2rem;
  color: var(--primary-color);
}

.news-item-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 0.5rem;
}

.news-item-text {
  font-size: 1rem;
  color: var(--text-light);
}

.news-featured {
  margin-bottom: 3rem;
}

.featured-article {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  background-color: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.featured-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.featured-content {
  padding: 2rem;
}

.featured-date {
  color: var(--text-light);
  font-size: 0.9rem;
}

.featured-title {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin: 1rem 0;
}

.featured-excerpt {
  color: var(--text-color);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.featured-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.news-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.news-card:hover {
  transform: translateY(-5px);
}

.news-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.news-content {
  padding: 1.5rem;
}

.news-date {
  color: var(--text-light);
  font-size: 0.9rem;
}

.news-category {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-size: 0.8rem;
  margin-left: 1rem;
}

.news-title {
  font-size: 1.3rem;
  color: var(--text-color);
  margin: 1rem 0;
}

.news-excerpt {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.news-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}

.newsletter-signup {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 3rem 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  margin-bottom: 3rem;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  max-width: 400px;
  margin: 2rem auto 0;
}

.newsletter-input {
  flex: 1;
  padding: 0.8rem;
  border: none;
  border-radius: var(--border-radius);
}

.newsletter-button {
  background-color: var(--white);
  color: var(--primary-color);
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
}

.contact-form {
  padding: 4rem 0;
  background-color: var(--background-color);
}

.contact-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 1rem;
}

.contact-subtitle {
  font-size: 1.1rem;
  color: var(--text-color);
  text-align: center;
  margin-bottom: 3rem;
}

.contact-form-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-input,
.contact-textarea {
  width: 100%;
  padding: 1rem;
  margin-bottom: 1rem;
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

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

.contact-textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-submit {
  width: 100%;
  background-color: #40b300 !important;
  color: #ffe5c4 !important;
  padding: 1rem;
  border: none;
  border-radius: var(--border-radius);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-submit:hover {
  background-color: var(--primary-dark);
}

.contact-info {
  margin-bottom: 3rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-details {
  background-color: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.contact-item {
  margin-bottom: 2rem;
}

.contact-item h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.contact-form-section {
  background-color: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-color);
}

.faq-section {
  margin-top: 3rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.faq-item {
  background-color: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.faq-item h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.service-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.service-title {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.service-description {
  color: var(--text-color);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-features {
  list-style: none;
  margin-bottom: 2rem;
}

.service-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.service-features li:before {
  content: "✓";
  color: var(--primary-color);
  font-weight: bold;
  margin-right: 0.5rem;
}

.service-price {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 1rem;
  border-radius: var(--border-radius);
  text-align: center;
  font-weight: 600;
}

.process-section {
  margin: 4rem 0;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.process-step {
  text-align: center;
  padding: 2rem;
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.step-number {
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 1rem;
}

.process-step h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.cta-section {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 3rem 2rem;
  border-radius: var(--border-radius);
  text-align: center;
}

.cta-button {
  display: inline-block;
  background-color: var(--white);
  color: var(--primary-color);
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  margin-top: 1rem;
  transition: transform 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
}

.hero-about {
  margin-bottom: 3rem;
}

.hero-about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  background-color: #ffe5c4 !important;
}

.about-hero-img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
}

.mission-vision {
  margin-bottom: 3rem;
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.mission-card,
.vision-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.mission-card h3,
.vision-card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.values-section {
  margin-bottom: 3rem;
}

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

.value-item {
  background-color: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  text-align: center;
}

.value-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.value-item h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.team-section {
  margin-bottom: 3rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.team-member {
  background-color: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  text-align: center;
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

.team-member h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--text-light);
  font-weight: 600;
  margin-bottom: 1rem;
}

.team-bio {
  font-size: 0.9rem;
  line-height: 1.6;
}

.achievements-section {
  margin-bottom: 3rem;
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.achievement-item {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  text-align: center;
}

.achievement-number {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.achievement-text {
  font-size: 1.1rem;
}

.story-section {
  margin-bottom: 3rem;
}

.story-content {
  background-color: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.story-content p {
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.join-us-section {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 3rem 2rem;
  border-radius: var(--border-radius);
  text-align: center;
}

.join-button {
  display: inline-block;
  background-color: var(--white);
  color: var(--primary-color);
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  margin-top: 1rem;
  transition: transform 0.3s ease;
}

.join-button:hover {
  transform: translateY(-2px);
}

.footer {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  background-color: #ffe5c4 !important;
}

/* center grid items horizontally so child blocks (like footer-left and footer-right)
   are centered inside their grid cells */
.footer-content {
  justify-items: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
}

.footer-logo-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.footer-logo-text {
  font-weight: 700;
  font-size: 1.2rem;
}

.footer-description {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-year {
  font-size: 0.9rem;
  opacity: 0.8;
}

.footer-links {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}

.footer-links {
  width: 100%;
  max-width: 640px;
  margin: 0 auto 1rem;
  justify-content: center;
}

.footer-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.9rem;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 0.8;
}

.footer-contact {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-website {
  font-size: 0.9rem;
  opacity: 0.8;
}

.page-content {
  padding: 2rem 0;
  min-height: 60vh;
}

.page-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 2rem;
}

.page-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 3rem;
}

.content-section {
  margin-bottom: 3rem;
}

.content-section h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.content-section p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.content-section ul {
  margin-left: 2rem;
  margin-bottom: 1rem;
}

.content-section li {
  margin-bottom: 0.5rem;
}

.success-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  padding: 2rem 0;
}

.success-content {
  text-align: center;
  max-width: 500px;
  padding: 3rem 2rem;
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.success-icon {
  font-size: 4rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.success-title {
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 1rem;
}

.success-description {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.success-button {
  display: inline-block;
  background-color: #40b300 !important;
  color: #ffe5c4 !important;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.success-button:hover {
  background-color: var(--primary-dark);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ffe5c4 !important;
  color: var(--white);
  padding: 1rem;
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

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

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

.cookie-buttons {
  display: flex;
  gap: 1rem;
}

.cookie-accept,
.cookie-decline {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

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

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

.cookie-decline {
  background-color: transparent;
  color: var(--white) !important;
  border: 2px solid var(--white);
}

.cookie-decline:hover {
  background-color: var(--white);
  color: var(--text-color) !important;
}

.cookie-content a {
  color: var(--primary-dark);
  text-decoration: underline;
}

.cookie-extra {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: rgba(0,0,0,0.85);
}

@media (max-width: 768px) {
  .header-nav {
    flex-direction: column;
    gap: 1rem;
  }

  .header-menu {
    gap: 1rem;
  }

  .hero-content,
  .mechanisms-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

  .mechanisms-title,
  .gallery-title,
  .news-title,
  .contact-title,
  .page-title {
    font-size: 2rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  /* Ensure footer columns and link groups are centered on small screens */
  .footer-left,
  .footer-right {
    justify-self: center;
    text-align: center;
  }

  .footer-links {
    width: auto;
    max-width: 640px;
    margin: 0 auto 1rem;
    justify-content: center;
  }

  .footer-contact {
    text-align: center;
    margin: 0 auto 1rem;
  }

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

  .gallery-images,
  .news-items {
    grid-template-columns: 1fr;
  }

  .hero-about-content,
  .mission-vision-grid,
  .contact-grid,
  .featured-article {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    flex-direction: column;
  }

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

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

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

  .hero-description,
  .mechanisms-description {
    font-size: 1rem;
  }

  .hero-button,
  .mechanisms-button,
  .contact-submit {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .achievements-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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