/* ===================================
   CSS RESET & BASE STYLES
   =================================== */

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

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

body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1a1a1a;
  background-color: #F8F5F0;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul, ol {
  list-style-position: inside;
}

/* ===================================
   GEOMETRIC STRUCTURED TYPOGRAPHY
   =================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #2C5F2D;
  text-transform: uppercase;
  letter-spacing: 2px;
}

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

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

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

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

p {
  margin-bottom: 16px;
  line-height: 1.8;
}

/* ===================================
   CONTAINER & LAYOUT
   =================================== */

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ===================================
   HEADER - GEOMETRIC STRUCTURED
   =================================== */

header {
  background-color: #ffffff;
  border-bottom: 4px solid #2C5F2D;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 8px rgba(44, 95, 45, 0.1);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
}

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

.main-nav {
  display: none;
}

.main-nav a {
  margin-left: 32px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  color: #2C5F2D;
  border-bottom: 2px solid transparent;
  padding-bottom: 4px;
}

.main-nav a:hover {
  color: #C19A6B;
  border-bottom-color: #C19A6B;
}

/* ===================================
   MOBILE MENU - GEOMETRIC STRUCTURED
   =================================== */

.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: #2C5F2D;
  border: 2px solid #2C5F2D;
  color: #ffffff;
  font-size: 24px;
  cursor: pointer;
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 1001;
  transition: all 0.3s ease;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.mobile-menu-toggle:hover {
  background-color: #C19A6B;
  border-color: #C19A6B;
  transform: rotate(90deg);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: linear-gradient(135deg, #2C5F2D 0%, #1a3a1b 100%);
  z-index: 1000;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  display: flex;
  flex-direction: column;
  padding: 80px 32px 32px;
  box-shadow: -4px 0 16px rgba(0, 0, 0, 0.3);
  border-left: 4px solid #C19A6B;
}

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

.mobile-menu-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 48px;
  height: 48px;
  background-color: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
  font-size: 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.mobile-menu-close:hover {
  background-color: #C19A6B;
  border-color: #C19A6B;
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-nav a {
  padding: 16px 0;
  color: #ffffff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 16px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.mobile-nav a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 2px;
  background-color: #C19A6B;
  transition: width 0.3s ease;
}

.mobile-nav a:hover {
  color: #C19A6B;
  padding-left: 16px;
}

.mobile-nav a:hover::before {
  width: 8px;
}

/* ===================================
   HERO SECTION - GEOMETRIC STRUCTURED
   =================================== */

.hero {
  background: linear-gradient(135deg, #2C5F2D 0%, #1a3a1b 100%);
  color: #ffffff;
  padding: 80px 20px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background-color: rgba(193, 154, 107, 0.1);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  transform: rotate(45deg);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 300px;
  height: 300px;
  background-color: rgba(193, 154, 107, 0.05);
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
}

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

.hero-content {
  max-width: 800px;
}

.hero h1 {
  color: #ffffff;
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 24px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.subheadline {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 32px;
  color: #F8F5F0;
  font-weight: 300;
}

.section-subheadline {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 32px;
  color: #555555;
  font-weight: 300;
  text-align: center;
}

/* ===================================
   BUTTONS - GEOMETRIC STRUCTURED
   =================================== */

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

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  border: 2px solid;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.btn-primary {
  background-color: #C19A6B;
  color: #ffffff;
  border-color: #C19A6B;
}

.btn-primary:hover {
  background-color: #2C5F2D;
  border-color: #2C5F2D;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(44, 95, 45, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.btn-secondary:hover {
  background-color: #ffffff;
  color: #2C5F2D;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

section:not(.hero) .btn-secondary {
  color: #2C5F2D;
  border-color: #2C5F2D;
}

section:not(.hero) .btn-secondary:hover {
  background-color: #2C5F2D;
  color: #ffffff;
}

/* ===================================
   BENEFITS & FEATURES GRID - FLEXBOX
   =================================== */

.benefits-grid,
.features-grid,
.services-grid,
.testimonials-grid,
.credentials-grid,
.resources-grid,
.contact-grid,
.values-grid,
.menu-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.benefit-item,
.feature,
.service-card,
.testimonial-card,
.credential-section,
.resource-card,
.contact-card,
.value-item,
.menu-item {
  flex: 1 1 100%;
  min-width: 0;
  background-color: #ffffff;
  padding: 24px;
  border: 2px solid #2C5F2D;
  position: relative;
  margin-bottom: 20px;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  transition: all 0.3s ease;
}

.benefit-item:hover,
.feature:hover,
.service-card:hover,
.resource-card:hover,
.contact-card:hover,
.value-item:hover,
.menu-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(44, 95, 45, 0.2);
  border-color: #C19A6B;
}

.benefit-item img,
.feature img,
.contact-card img {
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
}

.benefit-item p,
.feature p {
  font-size: 16px;
  line-height: 1.6;
  color: #333333;
}

.feature h3 {
  color: #2C5F2D;
  margin-bottom: 12px;
}

/* ===================================
   INTRODUCTION SECTION
   =================================== */

.introduction {
  padding: 60px 20px;
  background-color: #ffffff;
  margin-bottom: 60px;
}

.introduction h2 {
  text-align: center;
  margin-bottom: 24px;
  color: #2C5F2D;
}

.introduction > .container > p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 18px;
  color: #555555;
}

/* ===================================
   SERVICES SECTION
   =================================== */

.services-overview {
  padding: 60px 20px;
  background-color: #F8F5F0;
  margin-bottom: 60px;
}

.services-overview h2 {
  text-align: center;
  margin-bottom: 16px;
}

.services-overview > .container > p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 18px;
  color: #555555;
}

.service-card h3 {
  color: #2C5F2D;
  margin-bottom: 12px;
  font-size: 22px;
}

.service-card p {
  color: #333333;
  margin-bottom: 12px;
}

.service-card .price {
  font-weight: 700;
  color: #C19A6B;
  font-size: 18px;
  margin-top: 16px;
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.services-overview .btn-primary {
  display: block;
  margin: 40px auto 0;
  max-width: 300px;
}

/* ===================================
   WHY CHOOSE SECTION
   =================================== */

.why-choose {
  padding: 60px 20px;
  background-color: #ffffff;
  margin-bottom: 60px;
}

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

/* ===================================
   TESTIMONIALS - GEOMETRIC STRUCTURED
   =================================== */

.testimonials {
  padding: 60px 20px;
  background: linear-gradient(135deg, #F8F5F0 0%, #e8e5e0 100%);
  margin-bottom: 60px;
  position: relative;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  border: 2px solid #C19A6B;
  clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
  pointer-events: none;
}

.testimonials .container {
  position: relative;
  z-index: 1;
}

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

.testimonial-card {
  background-color: #ffffff;
  padding: 32px;
  border-left: 4px solid #C19A6B;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 72px;
  color: #C19A6B;
  opacity: 0.2;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card > p:first-child {
  font-style: italic;
  color: #1a1a1a;
  font-size: 16px;
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
}

.client-name {
  font-weight: 700;
  color: #2C5F2D;
  margin-bottom: 4px;
}

.client-role,
.event-type {
  font-size: 14px;
  color: #666666;
  margin-bottom: 0;
}

/* ===================================
   CTA BANNER - GEOMETRIC STRUCTURED
   =================================== */

.cta-banner,
.cta-section {
  background: linear-gradient(135deg, #2C5F2D 0%, #1a3a1b 100%);
  color: #ffffff;
  padding: 60px 20px;
  margin-bottom: 60px;
  text-align: center;
  position: relative;
  clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 95%);
}

.cta-banner::before,
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  border: 2px solid rgba(193, 154, 107, 0.3);
  clip-path: polygon(30px 0, 100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%, 0 30px);
}

.cta-banner h2,
.cta-section h2 {
  color: #ffffff;
  margin-bottom: 16px;
}

.cta-banner p,
.cta-section p {
  font-size: 18px;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

/* ===================================
   FOOTER - GEOMETRIC STRUCTURED
   =================================== */

footer {
  background-color: #1a1a1a;
  color: #cccccc;
  padding: 60px 20px 20px;
  border-top: 4px solid #C19A6B;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 40px;
}

.footer-section {
  flex: 1 1 100%;
  min-width: 0;
}

.footer-logo {
  height: 60px;
  width: auto;
  margin-bottom: 16px;
}

.footer-section h4 {
  color: #C19A6B;
  margin-bottom: 16px;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-bottom: 2px solid #C19A6B;
  padding-bottom: 8px;
  display: inline-block;
}

.footer-section p {
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.8;
}

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

.footer-nav a {
  font-size: 14px;
  color: #cccccc;
  padding: 4px 0;
  border-left: 2px solid transparent;
  padding-left: 0;
  transition: all 0.3s ease;
}

.footer-nav a:hover {
  color: #C19A6B;
  border-left-color: #C19A6B;
  padding-left: 8px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #333333;
}

.footer-bottom p {
  font-size: 14px;
  color: #888888;
  margin-bottom: 0;
}

/* ===================================
   ABOUT PAGE - GEOMETRIC STRUCTURED
   =================================== */

.brand-story {
  padding: 60px 20px;
  background-color: #ffffff;
  margin-bottom: 60px;
}

.brand-story h2 {
  text-align: center;
  margin-bottom: 32px;
}

.brand-story > .container > p {
  max-width: 800px;
  margin: 0 auto 24px;
  font-size: 16px;
  line-height: 1.8;
  color: #333333;
}

.mission-vision {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 40px 0;
}

.mission,
.vision {
  flex: 1 1 100%;
  min-width: 0;
  background-color: #F8F5F0;
  padding: 32px;
  border-left: 4px solid #2C5F2D;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%);
}

.mission h3,
.vision h3 {
  color: #2C5F2D;
  margin-bottom: 12px;
}

.values {
  margin-top: 40px;
}

.values h3 {
  text-align: center;
  margin-bottom: 32px;
}

.team {
  padding: 60px 20px;
  background-color: #F8F5F0;
  margin-bottom: 60px;
}

.team h2 {
  text-align: center;
  margin-bottom: 24px;
}

.team p {
  max-width: 800px;
  margin: 0 auto 16px;
  text-align: center;
  color: #333333;
}

.credentials {
  padding: 60px 20px;
  background-color: #ffffff;
  margin-bottom: 60px;
}

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

.credential-section {
  flex: 1 1 100%;
  background-color: #F8F5F0;
  padding: 32px;
  border-top: 4px solid #C19A6B;
}

.credential-section h3 {
  color: #2C5F2D;
  margin-bottom: 16px;
}

.credential-section ul {
  list-style: none;
  padding-left: 0;
}

.credential-section li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  color: #333333;
}

.credential-section li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background-color: #C19A6B;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

/* ===================================
   SERVICES DETAILED PAGE
   =================================== */

.services-detailed {
  padding: 60px 20px;
  background-color: #ffffff;
  margin-bottom: 60px;
}

.service-detail {
  background-color: #F8F5F0;
  padding: 32px;
  margin-bottom: 32px;
  border: 2px solid #2C5F2D;
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-detail h3 {
  color: #2C5F2D;
  margin-bottom: 12px;
}

.service-detail p {
  color: #333333;
  margin-bottom: 12px;
}

.service-detail .price {
  font-weight: 700;
  color: #C19A6B;
  font-size: 20px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-detail .btn-primary {
  align-self: flex-start;
}

/* ===================================
   MENU PAGE - GEOMETRIC STRUCTURED
   =================================== */

.menu-intro {
  padding: 60px 20px;
  background-color: #ffffff;
  margin-bottom: 60px;
}

.menu-intro h2 {
  text-align: center;
  margin-bottom: 24px;
}

.menu-intro p {
  max-width: 800px;
  margin: 0 auto 16px;
  text-align: center;
  color: #333333;
}

.menu-section {
  padding: 60px 20px;
  margin-bottom: 60px;
  position: relative;
}

.menu-section:nth-child(even) {
  background-color: #F8F5F0;
}

.menu-section:nth-child(odd) {
  background-color: #ffffff;
}

.menu-section h2 {
  text-align: center;
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.menu-section h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 3px;
  background-color: #C19A6B;
}

.menu-section > .container > p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  color: #555555;
}

.menu-item {
  background-color: #ffffff;
  border-left: 3px solid #2C5F2D;
  padding: 20px;
}

.menu-section:nth-child(even) .menu-item {
  background-color: #ffffff;
}

.menu-item h4 {
  color: #2C5F2D;
  margin-bottom: 8px;
  font-size: 18px;
}

.menu-item p {
  color: #666666;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
}

/* ===================================
   GALLERY PAGE
   =================================== */

.featured-events {
  padding: 60px 20px;
  background-color: #ffffff;
  margin-bottom: 60px;
}

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

.event-card {
  background-color: #F8F5F0;
  padding: 32px;
  margin-bottom: 32px;
  border: 2px solid #C19A6B;
  clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.event-card h3 {
  color: #2C5F2D;
  margin-bottom: 12px;
}

.event-card p {
  color: #333333;
  margin-bottom: 12px;
}

.event-details {
  font-weight: 600;
  color: #C19A6B;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0;
}

/* ===================================
   CONTACT PAGE
   =================================== */

.contact-intro {
  padding: 60px 20px;
  background-color: #ffffff;
  margin-bottom: 60px;
}

.contact-intro h2 {
  text-align: center;
  margin-bottom: 24px;
}

.contact-intro p {
  max-width: 800px;
  margin: 0 auto 16px;
  text-align: center;
  color: #333333;
}

.contact-info {
  padding: 60px 20px;
  background-color: #F8F5F0;
  margin-bottom: 60px;
}

.contact-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.contact-card img {
  margin-bottom: 8px;
}

.contact-card h3 {
  color: #2C5F2D;
  margin-bottom: 8px;
}

.contact-card p {
  color: #333333;
  margin-bottom: 4px;
}

.consultation-process {
  padding: 60px 20px;
  background-color: #ffffff;
  margin-bottom: 60px;
}

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

.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.step {
  flex: 1 1 100%;
  min-width: 0;
  background-color: #F8F5F0;
  padding: 24px;
  border-top: 3px solid #C19A6B;
  position: relative;
  margin-bottom: 20px;
}

.step h3 {
  color: #2C5F2D;
  margin-bottom: 12px;
  font-size: 20px;
}

.step p {
  color: #333333;
  margin-bottom: 0;
}

.contact-alternatives {
  padding: 60px 20px;
  background-color: #F8F5F0;
  margin-bottom: 60px;
  text-align: center;
}

.contact-alternatives h2 {
  margin-bottom: 16px;
}

.contact-alternatives p {
  max-width: 600px;
  margin: 0 auto 12px;
  color: #333333;
}

.emphasis {
  font-weight: 700;
  color: #C19A6B;
  font-size: 16px;
}

/* ===================================
   LEGAL PAGES
   =================================== */

.legal-content {
  padding: 60px 20px;
  background-color: #ffffff;
  margin-bottom: 60px;
}

.legal-content h1 {
  text-align: center;
  margin-bottom: 16px;
  color: #2C5F2D;
}

.last-updated {
  text-align: center;
  color: #666666;
  font-size: 14px;
  margin-bottom: 40px;
  font-style: italic;
}

.text-section {
  max-width: 800px;
  margin: 0 auto 32px;
  padding: 24px;
  background-color: #F8F5F0;
  border-left: 3px solid #2C5F2D;
}

.text-section h2 {
  color: #2C5F2D;
  margin-bottom: 16px;
  font-size: 24px;
}

.text-section p {
  color: #333333;
  line-height: 1.8;
  margin-bottom: 12px;
}

.text-section ul {
  margin-left: 20px;
  margin-top: 12px;
}

.text-section li {
  margin-bottom: 8px;
  color: #333333;
}

/* ===================================
   THANK YOU PAGE
   =================================== */

.thank-you-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.success-icon {
  width: 80px;
  height: 80px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.confirmation {
  padding: 60px 20px;
  background-color: #ffffff;
  margin-bottom: 60px;
}

.confirmation h2 {
  text-align: center;
  margin-bottom: 24px;
}

.confirmation > .container > p {
  max-width: 700px;
  margin: 0 auto 40px;
  text-align: center;
  color: #333333;
}

.next-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.while-you-wait {
  padding: 60px 20px;
  background-color: #F8F5F0;
  margin-bottom: 60px;
}

.while-you-wait h2 {
  text-align: center;
  margin-bottom: 16px;
}

.while-you-wait > .container > p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  color: #333333;
}

.resource-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.resource-card h3 {
  color: #2C5F2D;
  margin-bottom: 8px;
}

.resource-card p {
  color: #333333;
  margin-bottom: 16px;
}

.resource-card .btn-secondary {
  align-self: stretch;
}

/* ===================================
   COOKIE CONSENT BANNER
   =================================== */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 20px;
  z-index: 998;
  border-top: 3px solid #C19A6B;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
}

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

.cookie-banner .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

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

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

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

.cookie-btn {
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: transparent;
  clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
}

.cookie-btn-accept {
  background-color: #C19A6B;
  color: #ffffff;
  border-color: #C19A6B;
}

.cookie-btn-accept:hover {
  background-color: #2C5F2D;
  border-color: #2C5F2D;
}

.cookie-btn-reject,
.cookie-btn-settings {
  background-color: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.cookie-btn-reject:hover,
.cookie-btn-settings:hover {
  background-color: #ffffff;
  color: #1a1a1a;
}

/* ===================================
   COOKIE PREFERENCES MODAL
   =================================== */

.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1002;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.cookie-modal-content {
  background-color: #ffffff;
  max-width: 600px;
  width: 100%;
  padding: 32px;
  position: relative;
  clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  background-color: transparent;
  border: 2px solid #2C5F2D;
  color: #2C5F2D;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  background-color: #2C5F2D;
  color: #ffffff;
  transform: rotate(90deg);
}

.cookie-modal h2 {
  color: #2C5F2D;
  margin-bottom: 20px;
}

.cookie-category {
  margin-bottom: 20px;
  padding: 16px;
  background-color: #F8F5F0;
  border-left: 3px solid #C19A6B;
}

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

.cookie-category h3 {
  font-size: 18px;
  color: #2C5F2D;
  margin-bottom: 0;
}

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #cccccc;
  transition: 0.3s;
  clip-path: polygon(13px 0, 100% 0, 100% 100%, 0 100%, 0 13px);
}

.toggle-slider::before {
  position: absolute;
  content: '';
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.3s;
  clip-path: polygon(25% 0%, 75% 0%, 100% 25%, 100% 75%, 75% 100%, 25% 100%, 0% 75%, 0% 25%);
}

input:checked + .toggle-slider {
  background-color: #2C5F2D;
}

input:checked + .toggle-slider::before {
  transform: translateX(24px);
}

input:disabled + .toggle-slider {
  background-color: #C19A6B;
  cursor: not-allowed;
}

.cookie-category p {
  font-size: 14px;
  color: #666666;
  margin-bottom: 0;
}

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

.cookie-modal-buttons button {
  flex: 1 1 auto;
  min-width: 120px;
}

/* ===================================
   RESPONSIVE BREAKPOINTS
   =================================== */

@media (min-width: 768px) {
  .mobile-menu-toggle {
    display: none;
  }

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

  .hero h1 {
    font-size: 56px;
  }

  h1 {
    font-size: 56px;
  }

  h2 {
    font-size: 40px;
  }

  .benefit-item,
  .feature {
    flex: 1 1 calc(50% - 24px);
  }

  .service-card {
    flex: 1 1 calc(50% - 24px);
  }

  .testimonial-card {
    flex: 1 1 calc(50% - 24px);
  }

  .mission,
  .vision {
    flex: 1 1 calc(50% - 24px);
  }

  .value-item {
    flex: 1 1 calc(50% - 24px);
  }

  .credential-section {
    flex: 1 1 calc(50% - 24px);
  }

  .menu-item {
    flex: 1 1 calc(50% - 24px);
  }

  .contact-card {
    flex: 1 1 calc(33.333% - 24px);
  }

  .step {
    flex: 1 1 calc(50% - 24px);
  }

  .resource-card {
    flex: 1 1 calc(50% - 24px);
  }

  .footer-section {
    flex: 1 1 calc(25% - 24px);
  }

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

@media (min-width: 1024px) {
  .hero h1 {
    font-size: 64px;
  }

  h1 {
    font-size: 64px;
  }

  h2 {
    font-size: 48px;
  }

  .benefit-item,
  .feature {
    flex: 1 1 calc(25% - 24px);
  }

  .service-card {
    flex: 1 1 calc(33.333% - 24px);
  }

  .value-item {
    flex: 1 1 calc(25% - 24px);
  }

  .step {
    flex: 1 1 calc(25% - 24px);
  }

  .resource-card {
    flex: 1 1 calc(25% - 24px);
  }
}

/* ===================================
   SMOOTH ANIMATIONS
   =================================== */

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

.section {
  animation: fadeInUp 0.6s ease-out;
}

/* ===================================
   ACCESSIBILITY & FOCUS STATES
   =================================== */

*:focus {
  outline: 2px solid #C19A6B;
  outline-offset: 2px;
}

button:focus,
a:focus {
  outline: 2px solid #C19A6B;
  outline-offset: 2px;
}

/* ===================================
   PRINT STYLES
   =================================== */

@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  .cta-buttons,
  .btn-primary,
  .btn-secondary {
    display: none;
  }

  body {
    background-color: white;
  }

  .hero {
    clip-path: none;
  }
}