:root {
  /* Основные цвета */
  --primary-color: #f3c9db; /* Пастельный розовый */
  --secondary-color: #aed9e0; /* Пастельный голубой */
  --accent-color: #ffa69e; /* Пастельный коралловый */
  --dark-accent: #e06377; /* Темный акцент */
  
  /* Нейтральные цвета */
  --background-color: #faf7f5; /* Светлый фон */
  --text-color: #333333; /* Основной текст */
  --text-light: #ffffff; /* Светлый текст */
  --text-muted: #777777; /* Приглушенный текст */
  
  /* Цвета для гласморфизма */
  --glass-bg: rgba(255, 255, 255, 0.15);
  --glass-border: rgba(255, 255, 255, 0.2);
  --glass-shadow: rgba(0, 0, 0, 0.1);
  
  /* Шрифты */
  --heading-font: 'Montserrat', sans-serif;
  --body-font: 'Merriweather', serif;
  
  /* Размеры */
  --container-width: 1200px;
  --container-padding: 20px;
  --section-spacing: 80px;
  --card-border-radius: 15px;
  
  /* Тени */
  --box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  --glass-box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
}

/* Базовые стили */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  color: var(--text-color);
  background-color: var(--background-color);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-color);
}

a {
  color: var(--dark-accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

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

/* Контейнеры */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

section {
  padding: 60px 0;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  font-size: 2.5rem;
  position: relative;
  color: var(--text-color);
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--accent-color);
  margin: 15px auto 0;
  border-radius: 2px;
}

/* Кнопки */
.btn-primary, button, input[type='submit'] {
  display: inline-block;
  padding: 12px 28px;
  background: linear-gradient(135deg, var(--accent-color), var(--dark-accent));
  color: var(--text-light);
  border: none;
  border-radius: 30px;
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary:hover, button:hover, input[type='submit']:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-primary:active, button:active, input[type='submit']:active {
  transform: translateY(1px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

/* Эффект гласморфизма */
.glassmorphism {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: var(--card-border-radius);
  box-shadow: var(--glass-box-shadow);
}

/* Хедер */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo h1 {
  font-size: 1.8rem;
  margin: 0;
  background: linear-gradient(135deg, var(--dark-accent), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-desktop ul {
  display: flex;
  list-style: none;
}

.nav-desktop ul li {
  margin-left: 30px;
}

.nav-desktop ul li a {
  font-family: var(--heading-font);
  font-weight: 500;
  color: var(--text-color);
  position: relative;
}

.nav-desktop ul li a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-color);
  transition: width 0.3s ease;
}

.nav-desktop ul li a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
  width: 30px;
  height: 24px;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-color);
  position: absolute;
  transition: all 0.3s ease;
}

.menu-toggle span:nth-child(1) {
  top: 0;
}

.menu-toggle span:nth-child(2) {
  top: 11px;
}

.menu-toggle span:nth-child(3) {
  bottom: 0;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 11px;
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 11px;
}

.nav-mobile {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  height: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  overflow: hidden;
  transition: height 0.3s ease;
  z-index: 999;
}

.nav-mobile.active {
  height: calc(100vh - 70px);
  overflow-y: auto;
  display: block;
}

.nav-mobile ul {
  list-style: none;
  padding: 20px;
}

.nav-mobile ul li {
  margin-bottom: 20px;
}

.nav-mobile ul li a {
  font-family: var(--heading-font);
  font-size: 1.2rem;
  color: var(--text-color);
  display: block;
  padding: 10px 0;
}

/* Hero Section */
.hero {
  height: 100vh;
  min-height: 600px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 0;
  margin-top: 0;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.hero-content h1 {
  font-size: 4rem;
  margin-bottom: 20px;
  color: var(--text-light);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 1.2s ease;
}

.hero-content p {
  font-size: 1.5rem;
  margin-bottom: 30px;
  color: var(--text-light);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 1.2s ease 0.2s forwards;
  opacity: 0;
}

.hero-content .btn-primary {
  animation: fadeInUp 1.2s ease 0.4s forwards;
  opacity: 0;
}

/* Mission Section */
.mission {
  background-color: var(--background-color);
}

.mission-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.mission-image {
  flex: 1;
  text-align: center;
}

.mission-image img {
  border-radius: var(--card-border-radius);
  box-shadow: var(--box-shadow);
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.mission-text {
  flex: 1;
}

.mission-text p {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

/* Statistics Section */
.statistics {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: var(--text-light);
}

.statistics::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(174, 217, 224, 0.8), rgba(243, 201, 219, 0.8));
  z-index: 1;
}

.statistics .container {
  position: relative;
  z-index: 2;
}

.statistics .section-title {
  color: var(--text-color);
}

.stats-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 30px;
}

.stat-card {
  flex: 1;
  min-width: 200px;
  padding: 40px 20px;
  text-align: center;
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border);
  border-radius: var(--card-border-radius);
  box-shadow: var(--glass-box-shadow);
}

.stat-number {
  font-family: var(--heading-font);
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark-accent);
}

.stat-description {
  font-size: 1.1rem;
  color: var(--text-color);
}

/* Insights Section */
.insights {
  background-color: var(--background-color);
}

.insights-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.insight-card {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border-radius: var(--card-border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.insight-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.card-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.insight-card:hover .card-image img {
  transform: scale(1.05);
}

.card-content {
  padding: 30px;
}

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

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

/* Resources Section */
.resources {
  background-color: #f5f5f5;
}

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

.resource-card {
  background-color: #fff;
  border-radius: var(--card-border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.resource-card .card-image {
  height: 200px;
}

.resource-card .card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.resource-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.resource-card p {
  margin-bottom: 20px;
  flex-grow: 1;
}

.resource-card a {
  display: inline-block;
  color: var(--dark-accent);
  font-weight: 600;
  font-family: var(--heading-font);
  position: relative;
  padding-bottom: 5px;
}

.resource-card a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--dark-accent);
  transition: width 0.3s ease;
}

.resource-card a:hover::after {
  width: 100%;
}

/* Sustainability Section */
.sustainability {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--text-light);
}

.sustainability::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
  z-index: 1;
}

.sustainability .container {
  position: relative;
  z-index: 2;
}

.sustainability .section-title {
  color: var(--text-light);
}

.sustainability-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.sustainability-text {
  flex: 1;
  color: var(--text-light);
}

.sustainability-text h3 {
  color: var(--text-light);
  font-size: 1.5rem;
  margin-top: 30px;
  margin-bottom: 15px;
}

.sustainability-text p {
  margin-bottom: 20px;
}

.sustainability-text ul {
  margin-left: 20px;
  margin-bottom: 20px;
}

.sustainability-text li {
  margin-bottom: 10px;
}

.sustainability-image {
  flex: 1;
  text-align: center;
}

.sustainability-image img {
  border-radius: var(--card-border-radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

/* Partners Section */
.partners {
  background-color: var(--background-color);
}

.partners-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.partner-logo {
  flex: 0 0 180px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background-color: #fff;
  border-radius: var(--card-border-radius);
  box-shadow: var(--box-shadow);
  transition: transform 0.3s ease;
}

.partner-logo:hover {
  transform: scale(1.05);
}

.partner-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Awards Section */
.awards {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.awards::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(243, 201, 219, 0.9), rgba(174, 217, 224, 0.9));
  z-index: 1;
}

.awards .container {
  position: relative;
  z-index: 2;
}

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

.award-card {
  background-color: #fff;
  border-radius: var(--card-border-radius);
  padding: 30px;
  text-align: center;
  box-shadow: var(--box-shadow);
  transition: transform 0.3s ease;
}

.award-card:hover {
  transform: translateY(-10px);
}

.award-icon {
  margin: 0 auto 20px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.award-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.award-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--text-color);
}

.award-card p {
  color: var(--text-muted);
}

/* Accolades Section */
.accolades {
  background-color: var(--background-color);
}

.accolades-carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.accolade-card {
  display: none;
  animation: fadeIn 0.5s ease forwards;
}

.accolade-content {
  background-color: #fff;
  border-radius: var(--card-border-radius);
  padding: 40px;
  box-shadow: var(--box-shadow);
  position: relative;
}

.accolade-content::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 5rem;
  font-family: Georgia, serif;
  color: var(--accent-color);
  opacity: 0.2;
  line-height: 1;
}

.quote {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 30px;
  color: var(--text-color);
  position: relative;
  z-index: 1;
}

.quote-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.quote-author img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.quote-author h4 {
  margin-bottom: 5px;
  font-size: 1.2rem;
}

.quote-author p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  gap: 20px;
}

.prev-btn, .next-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-color);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.prev-btn:hover, .next-btn:hover {
  background-color: var(--accent-color);
  color: var(--text-light);
}

/* FAQ Section */
.faq {
  background-color: #f5f5f5;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.accordion {
  border-radius: var(--card-border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.accordion-item {
  background-color: #fff;
  border-bottom: 1px solid #eee;
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-header {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  position: relative;
  transition: background-color 0.3s ease;
}

.accordion-header h3 {
  font-size: 1.2rem;
  margin: 0;
  padding-right: 40px;
}

.accordion-icon {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-content p {
  padding: 0 20px 20px;
}

.accordion-item.active .accordion-header {
  background-color: #f9f9f9;
}

/* Contact Section */
.contact {
  background-color: var(--background-color);
}

.contact-container {
  display: flex;
  gap: 50px;
}

.contact-info {
  flex: 1;
}

.info-item {
  margin-bottom: 30px;
}

.info-item h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--text-color);
}

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

.social-links a {
  font-family: var(--heading-font);
  color: var(--dark-accent);
  font-weight: 600;
  transition: color 0.3s ease;
  display: inline-block;
  padding: 5px 0;
  position: relative;
}

.social-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--dark-accent);
  transition: width 0.3s ease;
}

.social-links a:hover {
  color: var(--accent-color);
}

.social-links a:hover::after {
  width: 100%;
  background-color: var(--accent-color);
}

.contact-form {
  flex: 1;
  background-color: #fff;
  padding: 40px;
  border-radius: var(--card-border-radius);
  box-shadow: var(--box-shadow);
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-family: var(--heading-font);
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: var(--body-font);
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(255, 166, 158, 0.2);
  outline: none;
}

/* Footer Section */
.footer {
  background-color: #2c3e50;
  color: #fff;
  padding: 60px 0 20px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  flex: 1;
  min-width: 250px;
}

.footer-logo h2 {
  font-size: 1.8rem;
  color: var(--text-light);
  margin-bottom: 15px;
}

.footer-logo p {
  color: #ccc;
}

.footer-links {
  flex: 1;
  min-width: 200px;
}

.footer-links h3 {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 20px;
  position: relative;
}

.footer-links h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--accent-color);
}

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

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

.footer-links ul li a {
  color: #ccc;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: var(--accent-color);
}

.footer-social {
  flex: 1;
  min-width: 200px;
}

.footer-social h3 {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 20px;
  position: relative;
}

.footer-social h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--accent-color);
}

.footer-social .social-links {
  flex-direction: column;
  gap: 10px;
}

.footer-social .social-links a {
  color: #ccc;
}

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

.footer-bottom p {
  color: #ccc;
  font-size: 0.9rem;
}

/* Cookie Popup */
.cookie-popup {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  z-index: 9999;
}

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

.cookie-content p {
  flex: 1;
  min-width: 300px;
}

.cookie-btn {
  background-color: var(--accent-color);
  color: #fff;
  padding: 10px 25px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-family: var(--heading-font);
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.cookie-btn:hover {
  background-color: var(--dark-accent);
}

/* Success Page */
.success-page {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  text-align: center;
  background-color: var(--background-color);
}

.success-content {
  max-width: 600px;
  padding: 50px;
  background-color: #fff;
  border-radius: var(--card-border-radius);
  box-shadow: var(--box-shadow);
}

.success-content h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--dark-accent);
}

.success-content p {
  margin-bottom: 30px;
  font-size: 1.1rem;
}

/* Privacy and Terms Pages */
.page-content {
  padding-top: 100px;
  max-width: 800px;
  margin: 0 auto;
}

.page-content h1 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  text-align: center;
}

.page-content h2 {
  font-size: 1.8rem;
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-content p {
  margin-bottom: 20px;
}

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

.page-content li {
  margin-bottom: 10px;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

/* Media Queries */
@media (max-width: 1200px) {
  .container {
    padding: 0 30px;
  }
  
  .hero-content h1 {
    font-size: 3.5rem;
  }
}

@media (max-width: 992px) {
  .nav-desktop {
    display: none;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .hero-content p {
    font-size: 1.3rem;
  }
  
  .mission-content,
  .sustainability-content,
  .contact-container {
    flex-direction: column;
  }
  
  .mission-image,
  .sustainability-image {
    margin-bottom: 30px;
  }
  
  .sustainability-image {
    order: -1;
  }
}

@media (max-width: 768px) {
  section {
    padding: 50px 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .stat-card {
    flex: 0 0 calc(50% - 15px);
  }
  
  .award-card {
    padding: 20px;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 30px;
  }
  
  .footer-logo, .footer-links, .footer-social {
    min-width: 100%;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-content p {
    font-size: 1.1rem;
  }
  
  .stat-card {
    flex: 0 0 100%;
  }
  
  .accolade-content {
    padding: 30px 20px;
  }
  
  .quote-author {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .contact-form {
    padding: 30px 20px;
  }
  
  .form-group input,
  .form-group textarea {
    padding: 10px;
  }
  
  .btn-primary, button, input[type='submit'] {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}