/* Base styles and variables */
:root {
  /* Primary colors (Split-complementary scheme) */
  --primary-color: #FF5722; /* Vibrant orange */
  --secondary-color: #2196F3; /* Blue */
  --tertiary-color: #4CAF50; /* Green */
  
  /* Neutral colors */
  --dark: #232323;
  --medium-dark: #333333;
  --medium: #666666;
  --light-medium: #999999;
  --light: #f4f4f4;
  --white: #ffffff;
  
  /* Accent colors */
  --accent-1: #FF9800; /* Orange */
  --accent-2: #03A9F4; /* Light Blue */
  --accent-3: #8BC34A; /* Light Green */
  
  /* UI colors */
  --success: #4CAF50;
  --warning: #FFC107;
  --danger: #F44336;
  --info: #2196F3;
  
  /* Typography */
  --heading-font: 'Playfair Display', serif;
  --body-font: 'Source Sans Pro', sans-serif;
  
  /* Spacing */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-xxl: 5rem;
  
  /* Border radius */
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

html {
  scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
  color: var(--dark);
}

h1 {
  font-size: 3rem;
  margin-bottom: var(--spacing-lg);
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 2rem;
}

h4 {
  font-size: 1.5rem;
}

p {
  margin-bottom: var(--spacing-md);
}

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

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

ul {
  list-style: none;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.section-title {
  text-align: center;
  margin-bottom: var(--spacing-xl);
  position: relative;
  padding-bottom: var(--spacing-md);
}

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

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  border: none;
  border-radius: var(--border-radius-md);
  cursor: pointer;
  transition: all var(--transition-medium);
  font-size: 1rem;
  letter-spacing: 1px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: transform var(--transition-medium);
  transform: skewX(-15deg);
}

.btn:hover::before {
  transform: translateX(200%) skewX(-15deg);
}

.primary-btn {
  background-color: var(--primary-color);
  color: var(--white);
  box-shadow: 0 4px 10px rgba(255, 87, 34, 0.3);
}

.primary-btn:hover {
  background-color: #e64a19;
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(255, 87, 34, 0.4);
}

.secondary-btn {
  background-color: var(--secondary-color);
  color: var(--white);
  box-shadow: 0 4px 10px rgba(33, 150, 243, 0.3);
}

.secondary-btn:hover {
  background-color: #1976d2;
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(33, 150, 243, 0.4);
}

button, input[type='submit'] {
  font-family: var(--body-font);
  cursor: pointer;
}

/* Read more link styles */
.read-more {
  display: inline-block;
  font-weight: 600;
  color: var(--primary-color);
  position: relative;
  padding-right: 1.5rem;
  transition: all var(--transition-medium);
}

.read-more::after {
  content: '→';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: transform var(--transition-medium);
}

.read-more:hover {
  color: var(--accent-1);
  padding-right: 1.75rem;
}

.read-more:hover::after {
  transform: translate(5px, -50%);
}

/* Card styles */
.card {
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

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

.card-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
  position: relative;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.card-content {
  padding: var(--spacing-lg);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card-content h3 {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-md);
}

.card-content p {
  color: var(--medium);
  margin-bottom: var(--spacing-md);
}

/* Header styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all var(--transition-medium);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-md) var(--spacing-lg);
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
}

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

.logo h1 {
  font-size: 1.8rem;
  margin: 0;
}

.navigation {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  gap: var(--spacing-lg);
}

.nav-menu li a {
  color: var(--medium-dark);
  font-weight: 600;
  position: relative;
  padding: var(--spacing-sm) 0;
}

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

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

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

.burger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  cursor: pointer;
}

.burger-menu span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--medium-dark);
  transition: all var(--transition-medium);
}

/* Hero section */
.hero {
  position: relative;
  padding: 180px 0 120px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: var(--white);
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
  z-index: 1;
}

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

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: var(--spacing-lg);
  color: var(--white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: var(--spacing-xl);
  color: var(--white);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
  flex-wrap: wrap;
}

/* About section */
.about-section {
  padding: var(--spacing-xxl) 0;
  background-color: var(--white);
}

.about-content {
  display: flex;
  align-items: center;
  gap: var(--spacing-xl);
  flex-wrap: wrap;
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-image {
  flex: 1;
  min-width: 300px;
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--transition-slow);
}

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

/* Process section */
.process-section {
  padding: var(--spacing-xxl) 0;
  background-color: var(--light);
  position: relative;
}

.timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: var(--spacing-xl) 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background-color: var(--primary-color);
}

.timeline-item {
  position: relative;
  margin-bottom: var(--spacing-xl);
  width: 50%;
}

.timeline-item:nth-child(odd) {
  padding-right: var(--spacing-xl);
  text-align: right;
  left: 0;
}

.timeline-item:nth-child(even) {
  padding-left: var(--spacing-xl);
  text-align: left;
  left: 50%;
}

.timeline-number {
  position: absolute;
  top: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  z-index: 2;
  box-shadow: 0 0 0 6px var(--light), 0 0 0 10px rgba(255, 87, 34, 0.2);
}

.timeline-item:nth-child(odd) .timeline-number {
  right: -30px;
}

.timeline-item:nth-child(even) .timeline-number {
  left: -30px;
}

.timeline-content {
  padding: var(--spacing-lg);
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-medium);
}

.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.process-image {
  max-width: 800px;
  margin: var(--spacing-xl) auto 0;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

/* Awards section */
.awards-section {
  padding: var(--spacing-xxl) 0;
  background-color: var(--white);
}

.awards-content {
  display: flex;
  gap: var(--spacing-xl);
  flex-wrap: wrap;
}

.awards-text {
  flex: 1;
  min-width: 300px;
}

.awards-showcase {
  flex: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
}

.award-item {
  background-color: var(--light);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-medium);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

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

.award-item h3 {
  font-size: 1.2rem;
  margin: var(--spacing-md) 0 var(--spacing-xs);
  padding: 0 var(--spacing-md);
}

.award-item p {
  color: var(--medium);
  font-weight: 600;
  margin-bottom: var(--spacing-md);
}

/* Resources section */
.resources-section {
  padding: var(--spacing-xxl) 0;
  background-color: var(--light);
}

.resources-intro {
  text-align: center;
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto var(--spacing-xl);
}

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

.resource-card {
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-medium);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

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

.resource-card h3 {
  font-size: 1.5rem;
  margin: var(--spacing-md) 0;
  padding: 0 var(--spacing-md);
}

.resource-card p {
  padding: 0 var(--spacing-md);
  margin-bottom: var(--spacing-md);
}

.resource-link {
  display: inline-block;
  margin: var(--spacing-md) 0 var(--spacing-lg);
  padding: var(--spacing-sm) var(--spacing-lg);
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: var(--border-radius-md);
  font-weight: 600;
  transition: all var(--transition-medium);
}

.resource-link:hover {
  background-color: var(--accent-1);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(255, 87, 34, 0.3);
}

/* Sustainability section */
.sustainability-section {
  padding: var(--spacing-xxl) 0;
  background-color: var(--white);
}

.sustainability-content {
  display: flex;
  gap: var(--spacing-xl);
  flex-wrap: wrap;
  align-items: center;
}

.sustainability-image {
  flex: 1;
  min-width: 300px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.sustainability-text {
  flex: 1;
  min-width: 300px;
}

.progress-indicators {
  margin-top: var(--spacing-xl);
}

.progress-item {
  margin-bottom: var(--spacing-md);
}

.progress-item h4 {
  font-size: 1.1rem;
  margin-bottom: var(--spacing-xs);
}

.progress-bar {
  height: 10px;
  background-color: var(--light);
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: var(--spacing-xs);
}

.progress {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-1));
  border-radius: 5px;
  position: relative;
  animation: progress-animation 2s ease-in-out;
}

@keyframes progress-animation {
  from { width: 0; }
}

.progress-item span {
  font-size: 0.9rem;
  color: var(--medium);
  font-weight: 600;
}

/* Community section */
.community-section {
  padding: var(--spacing-xxl) 0;
  background-color: var(--light);
}

.community-content {
  display: flex;
  gap: var(--spacing-xl);
  flex-wrap: wrap;
  margin-bottom: var(--spacing-xl);
}

.community-text {
  flex: 1;
  min-width: 300px;
}

.community-cta {
  margin-top: var(--spacing-lg);
}

.community-images {
  flex: 1;
  min-width: 300px;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-md);
}

.image-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: var(--border-radius-md);
  transition: transform var(--transition-medium);
}

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

.testimonials {
  margin-top: var(--spacing-xl);
}

.testimonials h3 {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.testimonial-slider {
  display: flex;
  gap: var(--spacing-xl);
  flex-wrap: wrap;
}

.testimonial-item {
  flex: 1;
  min-width: 300px;
}

.testimonial-content {
  background-color: var(--white);
  padding: var(--spacing-lg);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  position: relative;
}

.testimonial-content::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 4rem;
  font-family: var(--heading-font);
  color: rgba(255, 87, 34, 0.1);
  line-height: 1;
}

.testimonial-content p {
  position: relative;
  z-index: 1;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  margin-top: var(--spacing-md);
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: var(--spacing-md);
  object-fit: cover;
}

.testimonial-author h4 {
  font-size: 1.1rem;
  margin-bottom: 0;
}

.testimonial-author p {
  font-size: 0.9rem;
  color: var(--medium);
  margin: 0;
}

/* Press section */
.press-section {
  padding: var(--spacing-xxl) 0;
  background-color: var(--white);
}

.press-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--spacing-xl);
}

.press-items {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.press-item {
  display: flex;
  gap: var(--spacing-lg);
  background-color: var(--light);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-medium);
}

.press-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.press-image {
  flex: 0 0 300px;
  position: relative;
  overflow: hidden;
}

.press-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.press-item:hover .press-image img {
  transform: scale(1.05);
}

.press-text {
  flex: 1;
  padding: var(--spacing-lg);
}

.press-text h3 {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-sm);
}

.press-date {
  display: block;
  color: var(--medium);
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: var(--spacing-md);
}

/* Contact section */
.contact-section {
  padding: var(--spacing-xxl) 0;
  background-color: var(--light);
}

.contact-content {
  display: flex;
  gap: var(--spacing-xl);
  flex-wrap: wrap;
}

.contact-form {
  flex: 1;
  min-width: 300px;
  background-color: var(--white);
  padding: var(--spacing-xl);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

.contact-form h3 {
  margin-bottom: var(--spacing-lg);
  text-align: center;
}

.form-group {
  margin-bottom: var(--spacing-md);
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: var(--spacing-xs);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid var(--light-medium);
  border-radius: var(--border-radius-md);
  font-family: var(--body-font);
  font-size: 1rem;
  transition: border-color var(--transition-fast);
}

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

.contact-info {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.contact-card {
  background-color: var(--white);
  padding: var(--spacing-lg);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.contact-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(255, 87, 34, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: var(--spacing-md);
  color: var(--primary-color);
  font-size: 1.5rem;
}

.contact-card h3 {
  font-size: 1.3rem;
  margin-bottom: var(--spacing-sm);
}

.contact-map {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.contact-hours {
  background-color: var(--white);
  padding: var(--spacing-lg);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

.contact-hours h3 {
  text-align: center;
  margin-bottom: var(--spacing-md);
}

.contact-hours ul {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.contact-hours li {
  display: flex;
  justify-content: space-between;
  padding: var(--spacing-xs) 0;
  border-bottom: 1px solid var(--light);
}

.contact-hours li:last-child {
  border-bottom: none;
}

.contact-hours li span {
  font-weight: 600;
}

/* Footer */
.footer {
  background-color: var(--dark);
  color: var(--light);
  padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
}

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

.footer-logo h3 {
  color: var(--white);
  font-size: 1.8rem;
  margin-bottom: var(--spacing-sm);
}

.footer-links,
.footer-legal,
.footer-social,
.footer-contact {
  flex: 1;
  min-width: 200px;
}

.footer h4 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: var(--spacing-lg);
  position: relative;
  padding-bottom: var(--spacing-sm);
}

.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
}

.footer ul {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.footer a {
  color: var(--light);
  transition: color var(--transition-fast);
}

.footer a:hover {
  color: var(--primary-color);
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.social-links a {
  position: relative;
  padding-left: 30px;
  display: inline-block;
}

.social-links a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.social-links li:nth-child(1) a::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='%23FF5722'%3E%3Cpath d='M12 2.04C6.5 2.04 2 6.53 2 12.06C2 17.06 5.66 21.21 10.44 21.96V14.96H7.9V12.06H10.44V9.85C10.44 7.34 11.93 5.96 14.22 5.96C15.31 5.96 16.45 6.15 16.45 6.15V8.62H15.19C13.95 8.62 13.56 9.39 13.56 10.18V12.06H16.34L15.89 14.96H13.56V21.96C15.9 21.58 18 20.35 19.48 18.52C20.97 16.7 21.76 14.39 21.76 12.06C21.76 6.53 17.25 2.04 12 2.04Z'/%3E%3C/svg%3E");
}

.social-links li:nth-child(2) a::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='%23FF5722'%3E%3Cpath d='M22.46 6c-.77.35-1.6.58-2.46.69.88-.53 1.56-1.37 1.88-2.38-.83.5-1.75.85-2.72 1.05C18.37 4.5 17.26 4 16 4c-2.35 0-4.27 1.92-4.27 4.29 0 .34.04.67.11.98C8.28 9.09 5.11 7.38 3 4.79c-.37.63-.58 1.37-.58 2.15 0 1.49.75 2.81 1.91 3.56-.71 0-1.37-.2-1.95-.5v.03c0 2.08 1.48 3.82 3.44 4.21a4.22 4.22 0 0 1-1.93.07 4.28 4.28 0 0 0 4 2.98 8.521 8.521 0 0 1-5.33 1.84c-.34 0-.68-.02-1.02-.06C3.44 20.29 5.7 21 8.12 21 16 21 20.33 14.46 20.33 8.79c0-.19 0-.37-.01-.56.84-.6 1.56-1.36 2.14-2.23z'/%3E%3C/svg%3E");
}

.social-links li:nth-child(3) a::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='%23FF5722'%3E%3Cpath d='M7.8 2h8.4C19.4 2 22 4.6 22 7.8v8.4a5.8 5.8 0 0 1-5.8 5.8H7.8C4.6 22 2 19.4 2 16.2V7.8A5.8 5.8 0 0 1 7.8 2m-.2 2A3.6 3.6 0 0 0 4 7.6v8.8C4 18.39 5.61 20 7.6 20h8.8a3.6 3.6 0 0 0 3.6-3.6V7.6C20 5.61 18.39 4 16.4 4H7.6m9.65 1.5a1.25 1.25 0 0 1 1.25 1.25A1.25 1.25 0 0 1 17.25 8 1.25 1.25 0 0 1 16 6.75a1.25 1.25 0 0 1 1.25-1.25M12 7a5 5 0 0 1 5 5 5 5 0 0 1-5 5 5 5 0 0 1-5-5 5 5 0 0 1 5-5m0 2a3 3 0 0 0-3 3 3 3 0 0 0 3 3 3 3 0 0 0 3-3 3 3 0 0 0-3-3z'/%3E%3C/svg%3E");
}

.social-links li:nth-child(4) a::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='%23FF5722'%3E%3Cpath d='M19 3a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14m-.5 15.5v-5.3a3.26 3.26 0 0 0-3.26-3.26c-.85 0-1.84.52-2.32 1.3v-1.11h-2.79v8.37h2.79v-4.93c0-.77.62-1.4 1.39-1.4a1.4 1.4 0 0 1 1.4 1.4v4.93h2.79M6.88 8.56a1.68 1.68 0 0 0 1.68-1.68c0-.93-.75-1.69-1.68-1.69a1.69 1.69 0 0 0-1.69 1.69c0 .93.76 1.68 1.69 1.68m1.39 9.94v-8.37H5.5v8.37h2.77z'/%3E%3C/svg%3E");
}

.footer-contact p {
  margin-bottom: var(--spacing-sm);
}

.footer-bottom {
  text-align: center;
  padding-top: var(--spacing-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}

/* Success page */
.success-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: var(--spacing-xl) var(--spacing-md);
}

.success-content {
  max-width: 800px;
  background-color: var(--white);
  padding: var(--spacing-xl);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
}

.success-content h1 {
  color: var(--primary-color);
  margin-bottom: var(--spacing-lg);
}

.success-content p {
  font-size: 1.2rem;
  margin-bottom: var(--spacing-lg);
}

.success-icon {
  font-size: 5rem;
  color: var(--success);
  margin-bottom: var(--spacing-lg);
}

/* Privacy & Terms pages */
.privacy-page,
.terms-page {
  padding-top: 120px;
  padding-bottom: var(--spacing-xxl);
}

.privacy-content,
.terms-content {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--white);
  padding: var(--spacing-xl);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

.privacy-content h1,
.terms-content h1 {
  margin-bottom: var(--spacing-xl);
  text-align: center;
  color: var(--primary-color);
}

.privacy-content h2,
.terms-content h2 {
  font-size: 1.8rem;
  margin-top: var(--spacing-xl);
  margin-bottom: var(--spacing-md);
  color: var(--dark);
}

.privacy-content p,
.terms-content p {
  margin-bottom: var(--spacing-md);
}

.privacy-content ul,
.terms-content ul {
  margin-bottom: var(--spacing-md);
  padding-left: var(--spacing-lg);
  list-style-type: disc;
}

.privacy-content li,
.terms-content li {
  margin-bottom: var(--spacing-xs);
}

/* Particle animations */
@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.animated-element {
  animation: float 6s ease-in-out infinite;
}

.pulse-element {
  animation: pulse 3s ease-in-out infinite;
}

/* Cookie consent popup */
#cookieConsent {
  border-radius: var(--border-radius-md) var(--border-radius-md) 0 0;
  font-size: 0.9rem;
}

#acceptCookies {
  background-color: var(--primary-color) !important;
  border-radius: var(--border-radius-md) !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  transition: all 0.3s ease !important;
}

#acceptCookies:hover {
  background-color: var(--accent-1) !important;
  transform: translateY(-2px) !important;
}

/* Media Queries */
@media (max-width: 992px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .hero-content h1 {
    font-size: 2.8rem;
  }
  
  .timeline::before {
    left: 30px;
  }
  
  .timeline-item {
    width: 100%;
    padding-left: var(--spacing-xl);
    padding-right: 0;
    text-align: left;
    left: 0;
  }
  
  .timeline-item:nth-child(odd) {
    padding-right: 0;
    text-align: left;
  }
  
  .timeline-item:nth-child(odd) .timeline-number {
    right: auto;
    left: 0;
  }
  
  .timeline-item:nth-child(even) .timeline-number {
    left: 0;
  }
  
  .press-item {
    flex-direction: column;
  }
  
  .press-image {
    flex: 0 0 200px;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: -500px;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    padding: var(--spacing-xl) 0;
    flex-direction: column;
    text-align: center;
    transition: top 0.5s ease;
    z-index: 998;
  }
  
  .nav-menu.active {
    top: 70px;
  }
  
  .burger-menu {
    display: flex;
    z-index: 999;
  }
  
  .burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .burger-menu.active span:nth-child(2) {
    opacity: 0;
  }
  
  .burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
  
  .hero {
    padding: 150px 0 80px;
  }
  
  .hero-content h1 {
    font-size: 2.3rem;
  }
  
  .about-content,
  .sustainability-content,
  .community-content {
    flex-direction: column;
  }
  
  .about-image,
  .sustainability-image {
    margin-top: var(--spacing-lg);
  }
  
  .awards-content {
    flex-direction: column;
  }
  
  .awards-text {
    margin-bottom: var(--spacing-lg);
  }
  
  .footer-content {
    flex-direction: column;
    gap: var(--spacing-lg);
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: var(--spacing-md);
  }
  
  .image-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-content {
    flex-direction: column;
  }
  
  .contact-info {
    margin-top: var(--spacing-xl);
  }
}