/* ===================================
   VortexMoss Nutrition - Style.css
   Warm & Friendly Design Style
   =================================== */

/* === CSS RESET & BASE === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #333333;
  background-color: #FFF8F0;
  overflow-x: hidden;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  color: #1A5033;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
}

h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

h4 {
  font-size: 18px;
  margin-bottom: 12px;
}

p {
  font-size: 16px;
  margin-bottom: 16px;
  color: #555555;
}

a {
  color: #2D7A4F;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #F4A261;
}

ul, ol {
  margin-bottom: 16px;
  padding-left: 24px;
}

li {
  margin-bottom: 8px;
  color: #555555;
}

/* === CONTAINER & LAYOUT === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* === HEADER === */
header {
  background-color: #FFFFFF;
  padding: 16px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 3px solid #F4A261;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  height: 50px;
  width: auto;
}

.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.main-nav a {
  font-weight: 600;
  font-size: 14px;
  color: #1A5033;
  padding: 8px 16px;
  border-radius: 24px;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  background-color: #FFF8F0;
  color: #F4A261;
  transform: translateY(-2px);
}

/* === MOBILE MENU === */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background-color: #2D7A4F;
  color: #FFFFFF;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(45, 122, 79, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: #F4A261;
  transform: scale(1.1);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: #FFFFFF;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 32px;
  color: #1A5033;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background-color: #FFF8F0;
  color: #F4A261;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 80px 24px 24px;
  gap: 8px;
}

.mobile-nav a {
  display: flex;
  align-items: center;
  padding: 16px 20px;
  color: #1A5033;
  font-weight: 600;
  font-size: 16px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background-color: #FFF8F0;
  color: #F4A261;
  transform: translateX(8px);
}

/* === BUTTONS === */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border-radius: 32px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-decoration: none;
}

.btn-primary {
  background-color: #2D7A4F;
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(45, 122, 79, 0.3);
}

.btn-primary:hover {
  background-color: #1A5033;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45, 122, 79, 0.4);
}

.btn-secondary {
  background-color: #FFFFFF;
  color: #2D7A4F;
  border: 2px solid #2D7A4F;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.btn-secondary:hover {
  background-color: #F4A261;
  color: #FFFFFF;
  border-color: #F4A261;
  transform: translateY(-2px);
}

.cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}

/* === HERO SECTION === */
.hero {
  background: linear-gradient(135deg, rgba(45, 122, 79, 0.95), rgba(26, 80, 51, 0.95)), url('assets/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  padding: 80px 20px;
  margin-bottom: 60px;
  border-radius: 0 0 40px 40px;
}

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

.hero h1 {
  color: #FFFFFF;
  font-size: 48px;
  margin-bottom: 20px;
}

.subheadline {
  font-size: 18px;
  color: #FFFFFF;
  margin-bottom: 32px;
  line-height: 1.7;
}

/* === PAGE HERO === */
.page-hero {
  background: linear-gradient(135deg, #2D7A4F, #52B788);
  padding: 60px 20px 40px;
  margin-bottom: 60px;
  border-radius: 0 0 40px 40px;
}

.page-hero h1 {
  color: #FFFFFF;
  margin-bottom: 16px;
}

.page-hero p {
  color: #FFFFFF;
  font-size: 18px;
}

.breadcrumb {
  margin-bottom: 20px;
  font-size: 14px;
}

.breadcrumb a {
  color: #FFFFFF;
  opacity: 0.9;
}

.breadcrumb a:hover {
  opacity: 1;
}

/* === SECTIONS === */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.section-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 18px;
  color: #555555;
}

/* === VALUE PROPOSITION === */
.value-proposition {
  background-color: #FFFFFF;
  border-radius: 24px;
  padding: 60px 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.value-proposition h2 {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

.value-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 40px;
}

.value-card {
  flex: 1 1 300px;
  max-width: 350px;
  background-color: #FFF8F0;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  position: relative;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(45, 122, 79, 0.15);
}

.value-card h3 {
  color: #2D7A4F;
  margin-bottom: 12px;
}

.statistics {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  padding-top: 40px;
  border-top: 2px solid #F4A261;
}

.statistics span {
  font-size: 18px;
  font-weight: 700;
  color: #2D7A4F;
}

/* === SERVICE CARDS === */
.service-grid,
.plan-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 40px;
}

.service-card,
.plan-card {
  flex: 1 1 300px;
  max-width: 380px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.service-card:hover,
.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 28px rgba(45, 122, 79, 0.2);
}

.service-card.featured,
.plan-card.featured {
  border: 3px solid #F4A261;
}

.badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background-color: #F4A261;
  color: #FFFFFF;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.price {
  font-size: 28px;
  font-weight: 700;
  color: #2D7A4F;
  margin: 16px 0;
}

.ideal-for {
  font-style: italic;
  color: #777777;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #E0E0E0;
}

/* === TESTIMONIALS === */
.testimonials {
  background: linear-gradient(135deg, #FFFFFF, #FFF8F0);
  border-radius: 24px;
  padding: 60px 20px;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 40px;
}

.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 40px;
}

.testimonial-card {
  flex: 1 1 400px;
  max-width: 500px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #F4A261;
  position: relative;
  margin-bottom: 20px;
}

.testimonial-card p {
  font-style: italic;
  color: #333333;
  margin-bottom: 16px;
  font-size: 16px;
}

.testimonial-card cite {
  display: block;
  font-style: normal;
  font-weight: 600;
  color: #2D7A4F;
  margin-top: 12px;
}

.trust-badges,
.trust-elements {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 32px;
}

.trust-badges span,
.trust-elements span {
  background-color: #FFFFFF;
  padding: 12px 24px;
  border-radius: 24px;
  font-weight: 600;
  color: #2D7A4F;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* === CTA BANNER === */
.cta-banner,
.cta-consultation,
.cta-services,
.cta-final {
  background: linear-gradient(135deg, #2D7A4F, #52B788);
  padding: 60px 20px;
  border-radius: 24px;
  text-align: center;
  margin-bottom: 60px;
}

.cta-banner h2,
.cta-consultation h2,
.cta-services h2,
.cta-final h2 {
  color: #FFFFFF;
  margin-bottom: 16px;
}

.cta-banner p,
.cta-consultation p,
.cta-services p,
.cta-final p {
  color: #FFFFFF;
  font-size: 18px;
  margin-bottom: 24px;
}

.trust-indicator {
  margin-top: 16px;
  font-size: 14px;
  color: #FFFFFF;
  opacity: 0.9;
}

/* === RECIPE SECTIONS === */
.recipe-filter {
  background-color: #FFFFFF;
  padding: 32px 20px;
  border-radius: 16px;
  margin-bottom: 40px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.filter-bar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: stretch;
}

.search-field {
  padding: 14px 20px;
  border: 2px solid #E0E0E0;
  border-radius: 24px;
  font-size: 16px;
  width: 100%;
  transition: all 0.3s ease;
}

.search-field:focus {
  outline: none;
  border-color: #2D7A4F;
  box-shadow: 0 0 0 3px rgba(45, 122, 79, 0.1);
}

.filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.filter-tags span {
  padding: 8px 20px;
  background-color: #FFF8F0;
  border: 2px solid #2D7A4F;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  color: #2D7A4F;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-tags span:hover {
  background-color: #2D7A4F;
  color: #FFFFFF;
}

.featured-collections,
.recipe-benefits {
  margin-bottom: 60px;
}

.collection-grid,
.benefit-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.collection-card,
.benefit-item {
  flex: 1 1 280px;
  max-width: 350px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.collection-card:hover,
.benefit-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.benefit-item img {
  width: 60px;
  height: 60px;
  margin-bottom: 16px;
}

.recipe-database-cta {
  background: linear-gradient(135deg, #FFF8F0, #FFFFFF);
  padding: 60px 20px;
  border-radius: 24px;
  text-align: center;
}

.recipe-database-cta ul {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.recipe-database-cta li {
  padding: 12px 0;
  font-size: 18px;
  color: #333333;
}

.recipe-database-cta li:before {
  content: "✓ ";
  color: #2D7A4F;
  font-weight: 700;
  margin-right: 8px;
}

.trial-info {
  font-size: 14px;
  color: #777777;
  margin-top: 16px;
}

/* === PRINCIPLES & PHILOSOPHY === */
.philosophy,
.core-principles,
.sustainability,
.mission-values {
  margin-bottom: 60px;
}

.text-section {
  max-width: 900px;
  margin: 0 auto;
}

.key-principles {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.key-principles li {
  flex: 1 1 200px;
  background-color: #FFF8F0;
  padding: 16px 24px;
  border-radius: 12px;
  font-weight: 600;
  color: #2D7A4F;
}

.principle-grid,
.sustainability-grid,
.mission-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.principle-card,
.sustainability-item,
.mission-item {
  flex: 1 1 300px;
  max-width: 380px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
  position: relative;
  margin-bottom: 20px;
}

.principle-card img,
.sustainability-item img {
  width: 70px;
  height: 70px;
  margin-bottom: 16px;
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

/* === ABOUT US / TEAM === */
.company-story,
.team,
.impact {
  margin-bottom: 60px;
}

.milestones {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.milestones span {
  flex: 1 1 200px;
  background-color: #FFF8F0;
  padding: 16px 24px;
  border-radius: 12px;
  font-weight: 600;
  color: #2D7A4F;
  text-align: center;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.team-member {
  flex: 1 1 400px;
  max-width: 500px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
  position: relative;
  margin-bottom: 20px;
}

.role {
  font-style: italic;
  color: #F4A261;
  margin-bottom: 12px;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.stat-item {
  flex: 1 1 200px;
  max-width: 250px;
  text-align: center;
  padding: 24px;
  background-color: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.stat-number {
  display: block;
  font-size: 48px;
  font-weight: 700;
  color: #2D7A4F;
  margin-bottom: 8px;
}

.stat-label {
  display: block;
  font-size: 14px;
  color: #777777;
  font-weight: 600;
}

/* === CONTACT PAGE === */
.contact-options,
.office-location,
.team-contact {
  margin-bottom: 60px;
}

.contact-grid,
.expert-contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.contact-option,
.expert-contact {
  flex: 1 1 280px;
  max-width: 350px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
  position: relative;
  margin-bottom: 20px;
}

.contact-option img {
  width: 60px;
  height: 60px;
  margin-bottom: 16px;
}

.contact-form-section {
  background-color: #FFFFFF;
  padding: 60px 20px;
  border-radius: 24px;
  margin-bottom: 60px;
}

.form-placeholder {
  max-width: 600px;
  margin: 0 auto;
  padding: 32px;
  background-color: #FFF8F0;
  border-radius: 16px;
  border: 2px dashed #2D7A4F;
}

.form-placeholder p {
  margin-bottom: 12px;
  color: #555555;
}

.privacy-note {
  font-size: 12px;
  color: #777777;
  margin-top: 16px;
}

.location-details {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.address-info {
  flex: 1 1 400px;
  max-width: 600px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* === LEGAL PAGES === */
.legal-hero {
  background: linear-gradient(135deg, #2D7A4F, #52B788);
  padding: 60px 20px 40px;
  margin-bottom: 40px;
  border-radius: 0 0 24px 24px;
}

.legal-hero h1 {
  color: #FFFFFF;
}

.last-updated {
  color: #FFFFFF;
  opacity: 0.9;
  font-size: 14px;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px 60px;
}

.legal-content h2 {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 2px solid #F4A261;
}

.legal-content h3 {
  margin-top: 24px;
  color: #2D7A4F;
}

/* === COMPARISON TABLE === */
.comparison-table {
  margin-bottom: 60px;
}

.table-wrapper {
  overflow-x: auto;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

table {
  width: 100%;
  border-collapse: collapse;
  background-color: #FFFFFF;
}

thead {
  background-color: #2D7A4F;
  color: #FFFFFF;
}

th {
  padding: 16px;
  text-align: left;
  font-weight: 600;
}

td {
  padding: 16px;
  border-bottom: 1px solid #E0E0E0;
}

tr:hover {
  background-color: #FFF8F0;
}

/* === THANK YOU PAGE === */
.thank-you-hero {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #FFFFFF, #FFF8F0);
  border-radius: 24px;
  margin-bottom: 40px;
}

.success-icon {
  width: 80px;
  height: 80px;
  background-color: #2D7A4F;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 24px;
  box-shadow: 0 8px 24px rgba(45, 122, 79, 0.3);
}

.thank-you-content,
.related-content,
.social-proof {
  margin-bottom: 60px;
}

.suggestion-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.suggestion-card {
  flex: 1 1 280px;
  max-width: 350px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
  position: relative;
  margin-bottom: 20px;
}

.contact-info {
  background-color: #FFF8F0;
  padding: 24px;
  border-radius: 12px;
  margin-top: 24px;
  border-left: 4px solid #F4A261;
}

.rating {
  text-align: center;
  font-size: 18px;
  color: #F4A261;
  margin-top: 24px;
}

/* === GUARANTEE SECTION === */
.guarantee {
  background: linear-gradient(135deg, #FFF8F0, #FFFFFF);
  padding: 60px 20px;
  border-radius: 24px;
  text-align: center;
  margin-bottom: 60px;
}

/* === FOOTER === */
footer {
  background-color: #1A5033;
  color: #FFFFFF;
  padding: 60px 20px 24px;
  margin-top: 80px;
  border-radius: 40px 40px 0 0;
}

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

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

.footer-brand img {
  height: 40px;
  margin-bottom: 16px;
}

.footer-brand p,
.footer-contact p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

footer h4 {
  color: #F4A261;
  margin-bottom: 16px;
  font-size: 16px;
}

footer nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

footer nav a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  transition: all 0.3s ease;
}

footer nav a:hover {
  color: #F4A261;
  transform: translateX(4px);
}

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

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

/* === COOKIE CONSENT BANNER === */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #FFFFFF;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  padding: 24px;
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border-top: 3px solid #F4A261;
}

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

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

.cookie-consent-text {
  flex: 1 1 400px;
}

.cookie-consent-text p {
  margin: 0;
  color: #333333;
  font-size: 14px;
}

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

.cookie-consent-buttons button {
  padding: 10px 24px;
  border: none;
  border-radius: 24px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-accept-all {
  background-color: #2D7A4F;
  color: #FFFFFF;
}

.cookie-accept-all:hover {
  background-color: #1A5033;
}

.cookie-reject-all {
  background-color: #FFFFFF;
  color: #2D7A4F;
  border: 2px solid #2D7A4F;
}

.cookie-reject-all:hover {
  background-color: #FFF8F0;
}

.cookie-settings {
  background-color: #F4A261;
  color: #FFFFFF;
}

.cookie-settings:hover {
  background-color: #e89350;
}

/* === COOKIE MODAL === */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.cookie-modal-content {
  background-color: #FFFFFF;
  border-radius: 24px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.cookie-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.cookie-modal-close {
  background: none;
  border: none;
  font-size: 28px;
  color: #1A5033;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  background-color: #FFF8F0;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background-color: #FFF8F0;
  border-radius: 12px;
  border-left: 4px solid #2D7A4F;
}

.cookie-category h3 {
  margin-bottom: 8px;
  color: #2D7A4F;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
}

.toggle-switch {
  position: relative;
  width: 50px;
  height: 26px;
  background-color: #E0E0E0;
  border-radius: 13px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.toggle-switch.active {
  background-color: #2D7A4F;
}

.toggle-switch.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.toggle-slider {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background-color: #FFFFFF;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.toggle-switch.active .toggle-slider {
  transform: translateX(24px);
}

.cookie-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.cookie-modal-actions button {
  flex: 1 1 150px;
  padding: 12px 24px;
  border: none;
  border-radius: 24px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-save {
  background-color: #2D7A4F;
  color: #FFFFFF;
}

.cookie-save:hover {
  background-color: #1A5033;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 768px) {
  /* Typography */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  /* Header */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Hero */
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  /* Buttons */
  .cta-buttons {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
    text-align: center;
  }
  
  /* Cards */
  .value-cards,
  .service-grid,
  .plan-grid,
  .testimonial-grid,
  .collection-grid,
  .benefit-grid,
  .principle-grid,
  .team-grid,
  .stats-grid,
  .contact-grid {
    flex-direction: column;
    align-items: stretch;
  }
  
  .value-card,
  .service-card,
  .plan-card,
  .testimonial-card,
  .collection-card,
  .benefit-item,
  .principle-card,
  .team-member,
  .stat-item,
  .contact-option {
    max-width: 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
  }
  
  /* Cookie Banner */
  .cookie-consent-content {
    flex-direction: column;
  }
  
  .cookie-consent-buttons {
    width: 100%;
  }
  
  .cookie-consent-buttons button {
    flex: 1;
  }
  
  /* Filter Bar */
  .filter-bar {
    align-items: stretch;
  }
  
  /* Statistics */
  .statistics {
    flex-direction: column;
    gap: 16px;
  }
  
  /* Table */
  .table-wrapper {
    font-size: 14px;
  }
  
  th, td {
    padding: 12px 8px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .value-card,
  .service-card,
  .plan-card {
    flex: 1 1 calc(50% - 24px);
  }
}

/* === ANIMATIONS === */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes slideInLeft {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}

/* === UTILITY CLASSES === */
.text-center {
  text-align: center;
}

.mb-0 { margin-bottom: 0; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-40 { margin-bottom: 40px; }
.mb-60 { margin-bottom: 60px; }

.mt-0 { margin-top: 0; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }

/* === ACCESSIBILITY === */
:focus {
  outline: 3px solid #F4A261;
  outline-offset: 2px;
}

button:focus,
a:focus,
input:focus {
  outline: 3px solid #F4A261;
  outline-offset: 2px;
}

/* === SMOOTH TRANSITIONS === */
* {
  transition: background-color 0.3s ease, color 0.3s ease;
}

button,
a,
.btn {
  transition: all 0.3s ease;
}

/* === PRINT STYLES === */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent-banner,
  .cta-buttons {
    display: none;
  }
  
  body {
    background-color: #FFFFFF;
    color: #000000;
  }
}