/* ===== BASE STYLES ===== */
:root {
  --primary-color: #4A713A;
  --primary-light: #6A9158;
  --primary-dark: #344F28;
  --secondary-color: #D9A566;
  --secondary-light: #F4C78E;
  --secondary-dark: #B78545;
  --text-dark: #333333;
  --text-medium: #5A5A5A;
  --text-light: #8A8A8A;
  --background-light: #F8F7F3;
  --background-dark: #2F3640;
  --white: #FFFFFF;
  --black: #000000;
  --cream: #FAF7F0;
  --beige: #F2EFE6;
  --light-green: #E9F0E6;
  --medium-green: #D1E4CA;
  --dark-cream: #EFE8D8;
  --light-brown: #E6DFC8;
  --gray-100: #F7F7F7;
  --gray-200: #EEEEEE;
  --gray-300: #E0E0E0;
  --gray-400: #BDBDBD;
  --gray-500: #9E9E9E;
  --gray-600: #757575;
  --gray-700: #616161;
  --gray-800: #424242;
  --gray-900: #212121;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.1), 0 1px 3px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
  --transition-slow: 0.5s all ease;
  --transition-medium: 0.3s all ease;
  --transition-fast: 0.15s all ease;
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;
  --border-radius-xl: 24px;
  --container-width: 1200px;
  --container-padding: 1.5rem;
  --section-spacing: 6rem;
  --card-spacing: 2rem;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-dark);
  background-color: var(--background-light);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

h1 {
  font-size: 2.75rem;
  line-height: 1.2;
}

h2 {
  font-size: 2.5rem;
  position: relative;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.35rem;
}

.highlight {
  color: var(--primary-color);
  font-style: italic;
}

p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

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

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

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

ul {
  list-style-type: none;
  margin-left: 0;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

section {
  padding: var(--section-spacing) 0;
  position: relative;
}

.section-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem auto;
}

.subtitle {
  font-size: 1.2rem;
  color: var(--text-medium);
  margin-bottom: 2rem;
}

.btn {
  display: inline-block;
  padding: 0.875rem 1.75rem;
  border-radius: var(--border-radius-md);
  text-transform: uppercase;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  transition: var(--transition-fast);
  cursor: pointer;
  text-align: center;
  border: none;
}

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

.primary-btn:hover {
  background-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.secondary-btn {
  background-color: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.secondary-btn:hover {
  background-color: var(--primary-light);
  color: var(--white);
  border-color: var(--primary-light);
  transform: translateY(-2px);
}

/* ===== HEADER & NAVIGATION ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  padding: 0 2rem;
  max-width: var(--container-width);
  margin: 0 auto;
}

.logo a {
  display: flex;
  align-items: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
}

.logo-icon {
  color: var(--primary-color);
  margin-right: 0.5rem;
}

.main-nav {
  display: flex;
  align-items: center;
}

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

.nav-list li {
  margin-left: 2.5rem;
}

.nav-list a {
  color: var(--text-dark);
  font-size: 0.95rem;
  font-weight: 400;
  position: relative;
}

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

.nav-list a:hover::after,
.nav-list a:focus::after {
  width: 100%;
}

.nav-list a.cta-button {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 0.5rem 1.25rem;
  border-radius: var(--border-radius-md);
}

.nav-list a.cta-button:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
}

.nav-list a.cta-button::after {
  display: none;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.menu-toggle .bar {
  width: 100%;
  height: 3px;
  background-color: var(--text-dark);
  border-radius: 3px;
  transition: var(--transition-fast);
}

/* ===== HERO SECTION ===== */
.hero {
  height: 100vh;
  min-height: 700px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 2rem;
  position: relative;
  overflow: hidden;
  margin-top: 80px;
  background-color: var(--light-green);
}

.hero-content {
  max-width: 550px;
  z-index: 2;
  margin-right: 2rem;
}

.hero-content h1 {
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-text {
  font-size: 1.15rem;
  margin-bottom: 2rem;
  color: var(--text-medium);
}

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

.hero-image {
  position: relative;
  flex: 0 0 500px;
  height: 500px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

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

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

.herb-decoration {
  position: absolute;
  z-index: 1;
  color: var(--primary-color);
  opacity: 0.1;
  pointer-events: none;
}

.herb-top-right {
  top: -20px;
  right: -40px;
}

.herb-bottom-left {
  bottom: -30px;
  left: -30px;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  background-color: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 5rem;
}

.about-image {
  position: relative;
  height: 100%;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.philosophy-block, .mission-block {
  margin-bottom: 2.5rem;
}

.leaf-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
}

.leaf-list li::before {
  content: '';
  position: absolute;
  top: 0.5rem;
  left: 0;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='%234A713A' d='M17,8C8,10 5.9,16.17 3.82,21.34L5.71,22L6.66,19.7C7.14,19.87 7.64,20 8,20C19,20 22,3 22,3C21,5 14,5.25 9,6.25C4,7.25 2,11.5 2,13.5C2,15.5 3.75,17.25 3.75,17.25C7,8 17,8 17,8Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

.nature-quote {
  padding: 2rem;
  margin: 2rem 0;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.4rem;
  line-height: 1.6;
  color: var(--primary-dark);
  border-left: 3px solid var(--primary-color);
  background-color: var(--light-green);
  border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
}

.nature-quote cite {
  display: block;
  margin-top: 1rem;
  font-size: 1rem;
  font-style: normal;
  color: var(--text-medium);
}

.founder-section {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding: 3rem;
  background-color: var(--cream);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

.founder-image {
  flex: 0 0 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--white);
  box-shadow: var(--shadow-md);
}

.founder-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-bio h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

/* ===== HERBS SECTION ===== */
.herbs-section {
  background-color: var(--light-green);
  position: relative;
  overflow: hidden;
}

.floating-leaf {
  position: absolute;
  color: var(--primary-color);
  opacity: 0.1;
  z-index: 1;
  pointer-events: none;
}

.leaf-left {
  left: 5%;
  top: 20%;
}

.leaf-right {
  right: 5%;
  bottom: 15%;
}

.herbs-intro {
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
}

.herbs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-bottom: 4rem;
}

.herb-card {
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-medium);
}

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

.herb-image {
  height: 200px;
  overflow: hidden;
}

.herb-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-medium);
}

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

.herb-card h3 {
  padding: 1.5rem 1.5rem 0.5rem;
  color: var(--primary-dark);
}

.herb-latin {
  padding: 0 1.5rem;
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.herb-card p {
  padding: 0 1.5rem;
  margin-bottom: 1.5rem;
}

.herb-benefits {
  padding: 0 1.5rem 1.5rem;
}

.herb-benefits h4 {
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
  color: var(--primary-color);
}

.herb-benefits ul {
  list-style-type: disc;
  margin-left: 1.25rem;
}

.herb-benefits li {
  margin-bottom: 0.5rem;
  color: var(--text-medium);
}

.herbs-footer {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.herbs-footer p {
  margin-bottom: 2rem;
}

/* ===== TREATMENTS SECTION ===== */
.treatments-section {
  background-color: var(--white);
}

.treatments-intro {
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
}

.treatments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-bottom: 4rem;
}

.treatment-card {
  position: relative;
  padding: 2.5rem;
  background-color: var(--cream);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition-medium);
  overflow: hidden;
  z-index: 1;
}

.treatment-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: var(--primary-color);
  z-index: 2;
}

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

.treatment-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  margin-bottom: 1.5rem;
  border-radius: 50%;
  background-color: var(--light-green);
  color: var(--primary-color);
}

.treatment-card h3 {
  margin-bottom: 1rem;
  color: var(--primary-dark);
}

.treatment-card p {
  margin-bottom: 1.5rem;
  color: var(--text-medium);
}

.treatment-details {
  margin-bottom: 1.5rem;
}

.treatment-details li {
  margin-bottom: 0.75rem;
  color: var(--text-medium);
}

.treatment-details strong {
  color: var(--primary-color);
  font-weight: 500;
}

.treatment-price {
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--primary-dark);
  text-align: right;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-300);
}

.treatments-footer {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.note {
  padding: 1.5rem;
  border-radius: var(--border-radius-md);
  background-color: var(--light-green);
  font-style: italic;
  margin-bottom: 2rem;
}

/* ===== PRODUCTS SECTION ===== */
.products-section {
  background-color: var(--light-green);
  position: relative;
  overflow: hidden;
}

.leaf-top {
  top: 5%;
  right: 15%;
}

.products-intro {
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-bottom: 4rem;
}

.product-card {
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-medium);
}

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

.product-image {
  height: 220px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-medium);
}

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

.product-details {
  padding: 2rem;
}

.product-details h3 {
  margin-bottom: 1rem;
  color: var(--primary-dark);
}

.product-details p {
  color: var(--text-medium);
  margin-bottom: 1rem;
}

.product-variations {
  font-style: italic;
  font-size: 0.9rem;
  color: var(--text-light);
  border-left: 3px solid var(--primary-light);
  padding-left: 1rem;
  margin: 1.5rem 0;
}

.product-price {
  font-weight: 500;
  color: var(--primary-dark);
  font-size: 1.1rem;
}

.products-footer {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.product-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

/* ===== KNOWLEDGE SECTION ===== */
.knowledge-section {
  background-color: var(--white);
}

.knowledge-intro {
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
}

.knowledge-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-bottom: 4rem;
}

.knowledge-category {
  padding: 2.5rem;
  background-color: var(--cream);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition-medium);
}

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

.category-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  margin-bottom: 1.5rem;
  border-radius: 50%;
  background-color: var(--light-green);
  color: var(--primary-color);
}

.knowledge-category h3 {
  margin-bottom: 1rem;
  color: var(--primary-dark);
}

.knowledge-category p {
  color: var(--text-medium);
  margin-bottom: 1.5rem;
}

.upcoming-events, .featured-articles, .education-programs {
  margin-bottom: 2rem;
}

.upcoming-events h4, .featured-articles h4, .education-programs h4 {
  font-size: 1.1rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.upcoming-events li, .education-programs li {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px dashed var(--gray-300);
}

.upcoming-events li:last-child, .education-programs li:last-child, .featured-articles li:last-child {
  border-bottom: none;
}

.event-date, .program-title {
  display: block;
  font-weight: 500;
  color: var(--text-dark);
}

.event-title, .program-details {
  display: block;
  color: var(--text-medium);
}

.featured-articles li {
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px dashed var(--gray-300);
}

.featured-articles a {
  color: var(--text-medium);
  transition: var(--transition-fast);
}

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

.learn-more {
  display: inline-block;
  font-weight: 500;
  color: var(--primary-color);
  position: relative;
}

.learn-more::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--primary-color);
  transition: var(--transition-fast);
}

.learn-more:hover::after {
  height: 2px;
}

.knowledge-footer {
  margin-top: 4rem;
}

.knowledge-quote {
  padding: 2.5rem;
  margin-bottom: 3rem;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.4rem;
  line-height: 1.6;
  color: var(--primary-dark);
  background-color: var(--light-green);
  border-radius: var(--border-radius-lg);
  text-align: center;
}

.knowledge-quote cite {
  display: block;
  margin-top: 1rem;
  font-size: 1rem;
  font-style: normal;
  color: var(--text-medium);
}

.subscription-box {
  max-width: 600px;
  margin: 0 auto;
  padding: 2.5rem;
  background-color: var(--cream);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.subscription-box h3 {
  margin-bottom: 1rem;
}

.subscription-box p {
  margin-bottom: 1.5rem;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
}

.newsletter-form input {
  flex-grow: 1;
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray-300);
  border-radius: var(--border-radius-md);
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(74, 113, 58, 0.2);
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  background-color: var(--cream);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}

.contact-card {
  padding: 1.5rem;
  background-color: var(--white);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  transition: var(--transition-medium);
}

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

.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  margin-bottom: 1rem;
  border-radius: 50%;
  background-color: var(--light-green);
  color: var(--primary-color);
}

.contact-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--primary-dark);
}

.contact-card p {
  color: var(--text-medium);
  margin-bottom: 0;
}

.contact-form-container {
  padding: 2.5rem;
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

.contact-form-container h3 {
  margin-bottom: 1.5rem;
  text-align: center;
  color: var(--primary-dark);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray-300);
  border-radius: var(--border-radius-md);
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(74, 113, 58, 0.2);
}

.consent-group {
  display: flex;
  align-items: flex-start;
}

.consent-group input {
  width: auto;
  margin-right: 0.75rem;
  margin-top: 0.25rem;
}

.consent-group label {
  margin-bottom: 0;
  font-weight: 400;
  line-height: 1.5;
}

.contact-form .btn {
  width: 100%;
  margin-top: 1rem;
}

.map-container {
  height: 450px;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===== FOOTER ===== */
.site-footer {
  padding: 4rem 0 2rem;
  background-color: var(--background-dark);
  color: var(--white);
}

.footer-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

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

.footer-logo a {
  display: flex;
  align-items: center;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.footer-info p {
  color: var(--gray-400);
  margin-bottom: 1rem;
}

.footer-nav h3, .footer-policies h3 {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.footer-nav ul, .footer-policies ul {
  list-style: none;
}

.footer-nav li, .footer-policies li {
  margin-bottom: 0.75rem;
}

.footer-nav a, .footer-policies a {
  color: var(--gray-400);
  transition: var(--transition-fast);
}

.footer-nav a:hover, .footer-policies a:hover {
  color: var(--primary-light);
}

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

.footer-bottom p {
  color: var(--gray-500);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

/* ===== RESPONSIVE DESIGNS ===== */
@media screen and (max-width: 1200px) {
  :root {
    --section-spacing: 5rem;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2.25rem;
  }
  
  .hero {
    flex-direction: column;
    padding-top: 4rem;
    height: auto;
  }
  
  .hero-content {
    margin-right: 0;
    margin-bottom: 3rem;
    text-align: center;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
  }
  
  .about-image {
    height: 400px;
    order: -1;
  }
  
  .founder-section {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }
  
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 992px) {
  :root {
    --section-spacing: 4rem;
    --card-spacing: 1.5rem;
  }
  
  h1 {
    font-size: 2.25rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .header-container {
    padding: 0 1.5rem;
  }
  
  .nav-list {
    position: fixed;
    top: 80px;
    right: -100%;
    width: 250px;
    height: calc(100vh - 80px);
    background-color: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition-medium);
    z-index: 999;
  }
  
  .nav-list.active {
    right: 0;
  }
  
  .nav-list li {
    margin-left: 0;
    margin-bottom: 1.5rem;
    width: 100%;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .menu-toggle.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  
  .menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
}

@media screen and (max-width: 768px) {
  :root {
    --section-spacing: 3.5rem;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .hero-image {
    flex: 0 0 100%;
    max-width: 400px;
    height: 400px;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
  
  .nature-quote {
    padding: 1.5rem;
    font-size: 1.2rem;
  }
  
  .founder-section {
    padding: 1.5rem;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form .btn {
    width: 100%;
  }
}

@media screen and (max-width: 576px) {
  :root {
    --section-spacing: 3rem;
    --container-padding: 1rem;
  }
  
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .hero-image {
    height: 300px;
  }
  
  .section-intro {
    margin-bottom: 2.5rem;
  }
  
  .subtitle {
    font-size: 1.1rem;
  }
  
  .contact-info {
    grid-template-columns: 1fr;
  }
  
  .contact-form-container {
    padding: 1.5rem;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
