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

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

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

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

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

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ===================================
   TYPOGRAPHY
   =================================== */

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

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

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

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

p {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.7;
}

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

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

/* ===================================
   HEADER & NAVIGATION
   =================================== */

header {
  background-color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(44, 95, 79, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 16px 0;
}

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

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

.main-nav {
  display: none;
}

.main-nav a {
  padding: 8px 16px;
  margin: 0 4px;
  color: #2C5F4F;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  background-color: #F4F1EA;
  color: #2C5F4F;
}

/* ===================================
   MOBILE MENU
   =================================== */

.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  font-size: 24px;
  color: #2C5F4F;
  background-color: #F4F1EA;
  border-radius: 8px;
  transition: all 0.3s ease;
  z-index: 101;
}

.mobile-menu-toggle:hover {
  background-color: #D4A574;
  color: #FFFFFF;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background-color: #FFFFFF;
  box-shadow: -4px 0 16px rgba(44, 95, 79, 0.2);
  z-index: 200;
  transition: right 0.3s ease;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

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

.mobile-menu-close {
  align-self: flex-end;
  width: 40px;
  height: 40px;
  font-size: 24px;
  color: #2C5F4F;
  background-color: #F4F1EA;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background-color: #D4A574;
  color: #FFFFFF;
}

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

.mobile-nav a {
  padding: 16px;
  color: #2C5F4F;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-size: 16px;
}

.mobile-nav a:hover {
  background-color: #F4F1EA;
}

/* ===================================
   BUTTONS
   =================================== */

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  margin: 8px;
}

.btn-primary {
  background-color: #2C5F4F;
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(44, 95, 79, 0.2);
}

.btn-primary:hover {
  background-color: #1F4538;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(44, 95, 79, 0.3);
}

.btn-secondary {
  background-color: #F4F1EA;
  color: #2C5F4F;
  border: 2px solid #D4A574;
}

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

/* ===================================
   HERO SECTIONS
   =================================== */

.hero {
  background: linear-gradient(135deg, #F4F1EA 0%, #FFFFFF 100%);
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.hero h1 {
  color: #2C5F4F;
  margin-bottom: 16px;
}

.subheadline {
  font-size: 18px;
  color: #5A5A5A;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}

.trust-badge {
  color: #2C5F4F;
  font-weight: 600;
  font-size: 14px;
  margin-top: 24px;
}

.hero-subpage {
  background-color: #F4F1EA;
  padding: 60px 20px 40px;
  margin-bottom: 60px;
}

.breadcrumb {
  font-size: 14px;
  color: #5A5A5A;
  margin-bottom: 16px;
}

.breadcrumb a {
  color: #2C5F4F;
  text-decoration: underline;
}

.breadcrumb a:hover {
  color: #D4A574;
}

.hero-subpage h1 {
  margin-bottom: 16px;
}

/* ===================================
   VALUE PROPOSITION SECTION
   =================================== */

.value-proposition {
  padding: 60px 20px;
  background-color: #FFFFFF;
  margin-bottom: 60px;
}

.value-proposition h2 {
  text-align: center;
  margin-bottom: 16px;
}

.value-proposition > .container > p {
  text-align: center;
  color: #5A5A5A;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.value-points {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.value-point {
  flex: 1 1 200px;
  max-width: 250px;
  text-align: center;
  padding: 24px;
  background-color: #F4F1EA;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.value-point:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(44, 95, 79, 0.15);
}

.value-point h3 {
  color: #2C5F4F;
  font-size: 18px;
  margin-bottom: 8px;
}

.value-point p {
  font-size: 14px;
  color: #5A5A5A;
  margin-bottom: 0;
}

/* ===================================
   SERVICES SECTIONS
   =================================== */

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

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

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.service-card {
  flex: 1 1 100%;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(44, 95, 79, 0.1);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 0;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(44, 95, 79, 0.15);
}

.service-card h3 {
  color: #2C5F4F;
  margin-bottom: 16px;
}

.service-card p {
  color: #5A5A5A;
  margin-bottom: 16px;
}

.service-card .price {
  font-weight: 700;
  color: #D4A574;
  font-size: 18px;
  margin-bottom: 0;
}

.services-overview > .container > .btn-primary {
  display: block;
  max-width: 300px;
  margin: 0 auto;
  text-align: center;
}

/* Service Details Page */
.services-intro {
  padding: 40px 20px;
  margin-bottom: 40px;
}

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

.services-intro p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  color: #5A5A5A;
}

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

.service-detail-card {
  background-color: #F4F1EA;
  padding: 32px;
  border-radius: 12px;
  margin-bottom: 24px;
  position: relative;
}

.service-detail-card h3 {
  color: #2C5F4F;
  margin-bottom: 16px;
}

.service-detail-card > p {
  color: #5A5A5A;
  margin-bottom: 16px;
}

.service-detail-card ul {
  margin-bottom: 24px;
  padding-left: 0;
}

.service-detail-card ul li {
  list-style: none;
  padding-left: 24px;
  position: relative;
  margin-bottom: 8px;
  color: #5A5A5A;
}

.service-detail-card ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2C5F4F;
  font-weight: 700;
}

.service-detail-card .price {
  font-weight: 700;
  color: #D4A574;
  font-size: 16px;
  margin-bottom: 16px;
}

/* ===================================
   PROCESS SECTION
   =================================== */

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

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

.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 32px;
}

.step {
  flex: 1 1 150px;
  max-width: 200px;
  text-align: center;
  padding: 24px;
  background-color: #F4F1EA;
  border-radius: 8px;
  position: relative;
}

.step h3 {
  color: #2C5F4F;
  font-size: 18px;
  margin-bottom: 8px;
}

.step p {
  font-size: 14px;
  color: #5A5A5A;
  margin-bottom: 0;
}

.guarantee {
  text-align: center;
  color: #2C5F4F;
  font-weight: 700;
  font-size: 16px;
}

/* ===================================
   TESTIMONIALS SECTION
   =================================== */

.testimonials {
  padding: 60px 20px;
  background-color: #F4F1EA;
  margin-bottom: 60px;
}

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

.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}

.testimonial-card {
  flex: 1 1 100%;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(44, 95, 79, 0.1);
  position: relative;
  margin-bottom: 0;
}

.testimonial-card p {
  color: #2C2C2C;
  font-style: italic;
  margin-bottom: 16px;
  line-height: 1.7;
}

.testimonial-card .author {
  font-weight: 700;
  color: #2C5F4F;
  font-style: normal;
  font-size: 14px;
  margin-bottom: 0;
}

.testimonials .rating {
  text-align: center;
  color: #D4A574;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 0;
}

/* Workshop Testimonials */
.workshop-testimonials {
  padding: 60px 20px;
  background-color: #F4F1EA;
  margin-bottom: 60px;
}

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

.workshop-testimonials .testimonial-card {
  margin-bottom: 16px;
}

.workshop-testimonials .rating {
  text-align: center;
  color: #D4A574;
  font-weight: 700;
}

/* ===================================
   PROJECTS SECTION
   =================================== */

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

.project-card {
  background-color: #F4F1EA;
  padding: 32px;
  border-radius: 12px;
  margin-bottom: 24px;
  position: relative;
}

.project-card h3 {
  color: #2C5F4F;
  margin-bottom: 12px;
}

.project-meta {
  font-size: 14px;
  color: #D4A574;
  font-weight: 600;
  margin-bottom: 16px;
}

.project-card > p {
  color: #5A5A5A;
  margin-bottom: 16px;
}

.quote {
  font-style: italic;
  color: #2C5F4F;
  font-weight: 600;
  border-left: 4px solid #D4A574;
  padding-left: 16px;
  margin-top: 16px;
}

.project-stats {
  padding: 60px 20px;
  background-color: #2C5F4F;
  margin-bottom: 60px;
  color: #FFFFFF;
}

.project-stats h2 {
  text-align: center;
  color: #FFFFFF;
  margin-bottom: 48px;
}

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

.stat {
  flex: 1 1 150px;
  max-width: 250px;
  text-align: center;
}

.stat h3 {
  font-size: 48px;
  color: #D4A574;
  margin-bottom: 8px;
}

.stat p {
  color: #F4F1EA;
  font-size: 16px;
  margin-bottom: 0;
}

/* ===================================
   WORKSHOPS SECTION
   =================================== */

.workshop-benefits {
  padding: 40px 20px;
  margin-bottom: 40px;
  background-color: #F4F1EA;
}

.workshop-benefits h2 {
  text-align: center;
  margin-bottom: 32px;
}

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

.benefit {
  flex: 1 1 200px;
  max-width: 250px;
  background-color: #FFFFFF;
  padding: 24px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(44, 95, 79, 0.1);
}

.benefit p {
  color: #2C5F4F;
  font-weight: 600;
  margin-bottom: 0;
  font-size: 14px;
}

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

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

.workshop-card {
  background-color: #F4F1EA;
  padding: 32px;
  border-radius: 12px;
  margin-bottom: 24px;
  position: relative;
}

.workshop-card h3 {
  color: #2C5F4F;
  margin-bottom: 12px;
}

.meta {
  font-size: 14px;
  color: #D4A574;
  font-weight: 600;
  margin-bottom: 16px;
}

.workshop-card > p {
  color: #5A5A5A;
  margin-bottom: 16px;
}

.dates {
  font-weight: 600;
  color: #2C5F4F;
  margin-bottom: 16px;
  font-size: 14px;
}

.workshop-faq {
  padding: 60px 20px;
  background-color: #F4F1EA;
  margin-bottom: 60px;
}

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

.faq-item {
  background-color: #FFFFFF;
  padding: 24px;
  border-radius: 8px;
  margin-bottom: 16px;
}

.faq-item h3 {
  color: #2C5F4F;
  font-size: 18px;
  margin-bottom: 12px;
}

.faq-item p {
  color: #5A5A5A;
  margin-bottom: 0;
}

/* ===================================
   ABOUT US SECTIONS
   =================================== */

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

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

.story > .container > p {
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
  color: #5A5A5A;
}

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

.milestone {
  flex: 1 1 150px;
  max-width: 200px;
  text-align: center;
  padding: 24px;
  background-color: #F4F1EA;
  border-radius: 8px;
}

.milestone h3 {
  color: #D4A574;
  font-size: 32px;
  margin-bottom: 8px;
}

.milestone p {
  color: #2C5F4F;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 0;
}

.mission-vision {
  padding: 60px 20px;
  background-color: #F4F1EA;
  margin-bottom: 60px;
}

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

.mission,
.values {
  flex: 1;
}

.mission h2,
.values h2 {
  margin-bottom: 16px;
}

.mission p {
  color: #5A5A5A;
}

.values ul {
  padding-left: 0;
}

.values ul li {
  list-style: none;
  padding-left: 24px;
  position: relative;
  margin-bottom: 12px;
  color: #5A5A5A;
}

.values ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2C5F4F;
  font-weight: 700;
}

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

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

.team > .container > p {
  text-align: center;
  color: #5A5A5A;
  margin-bottom: 40px;
}

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

.team-member {
  flex: 1 1 200px;
  max-width: 250px;
  background-color: #F4F1EA;
  padding: 24px;
  border-radius: 8px;
  text-align: center;
}

.team-member h3 {
  color: #2C5F4F;
  font-size: 18px;
  margin-bottom: 8px;
}

.team-member p {
  color: #5A5A5A;
  font-size: 14px;
  margin-bottom: 0;
}

.team > .container > p:last-child {
  text-align: center;
  color: #2C5F4F;
  font-weight: 600;
}

.sustainability,
.local-commitment {
  padding: 60px 20px;
  background-color: #F4F1EA;
  margin-bottom: 60px;
}

.sustainability h2,
.local-commitment h2 {
  text-align: center;
  margin-bottom: 24px;
}

.sustainability > .container > p,
.local-commitment > .container > p {
  text-align: center;
  color: #5A5A5A;
  max-width: 800px;
  margin: 0 auto 24px;
}

.sustainability ul {
  max-width: 600px;
  margin: 0 auto;
  padding-left: 0;
}

.sustainability ul li {
  list-style: none;
  padding-left: 24px;
  position: relative;
  margin-bottom: 12px;
  color: #5A5A5A;
}

.sustainability ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2C5F4F;
  font-weight: 700;
}

/* ===================================
   CONTACT SECTIONS
   =================================== */

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

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

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

.contact-option {
  flex: 1 1 250px;
  max-width: 350px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(44, 95, 79, 0.1);
}

.contact-option h3 {
  color: #2C5F4F;
  margin-bottom: 16px;
}

.contact-option p {
  color: #5A5A5A;
  margin-bottom: 8px;
}

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

.contact-form-section h2 {
  text-align: center;
  margin-bottom: 16px;
}

.contact-form-section > .container > p {
  text-align: center;
  color: #5A5A5A;
  margin-bottom: 40px;
}

.form-placeholder {
  max-width: 600px;
  margin: 0 auto;
  background-color: #F4F1EA;
  padding: 48px 32px;
  border-radius: 12px;
  text-align: center;
}

.form-placeholder p {
  color: #2C5F4F;
  font-weight: 600;
  margin-bottom: 16px;
}

.location,
.service-area {
  padding: 40px 20px;
  margin-bottom: 40px;
}

.location h2,
.service-area h2 {
  text-align: center;
  margin-bottom: 24px;
}

.location p,
.service-area p {
  text-align: center;
  color: #5A5A5A;
  max-width: 700px;
  margin: 0 auto 16px;
}

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

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

/* ===================================
   CTA SECTIONS
   =================================== */

.cta-banner,
.cta-contact {
  padding: 80px 20px;
  background: linear-gradient(135deg, #2C5F4F 0%, #1F4538 100%);
  text-align: center;
  margin-bottom: 60px;
}

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

.cta-banner p,
.cta-contact p {
  color: #F4F1EA;
  font-size: 18px;
  margin-bottom: 32px;
}

.cta-contact .note {
  color: #D4A574;
  font-size: 14px;
  margin-top: 16px;
  font-weight: 600;
}

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

.thank-you-hero {
  padding: 80px 20px;
  text-align: center;
  background-color: #F4F1EA;
  margin-bottom: 60px;
}

.success-icon {
  width: 80px;
  height: 80px;
  background-color: #2C5F4F;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 24px;
}

.thank-you-hero h1 {
  margin-bottom: 16px;
}

.thank-you-hero p {
  color: #5A5A5A;
  margin-bottom: 32px;
}

.next-steps {
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

.next-steps .steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.related-content,
.related-links {
  padding: 60px 20px;
  background-color: #F4F1EA;
  margin-bottom: 60px;
}

.related-content h2,
.related-links h2 {
  text-align: center;
  margin-bottom: 32px;
}

.related-content .links,
.related-links .links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 500px;
  margin: 0 auto;
  align-items: center;
}

.related-links .links a {
  color: #2C5F4F;
  font-weight: 600;
  text-decoration: underline;
}

.related-links .links a:hover {
  color: #D4A574;
}

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

.testimonial .testimonial-card {
  max-width: 700px;
  margin: 0 auto 24px;
}

.testimonial .trust {
  text-align: center;
  color: #2C5F4F;
  font-weight: 700;
}

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

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

.legal-content h2 {
  margin-top: 32px;
  margin-bottom: 16px;
}

.legal-content h3 {
  margin-top: 24px;
  margin-bottom: 12px;
  font-size: 20px;
}

.legal-content p {
  color: #5A5A5A;
  margin-bottom: 16px;
}

.legal-content strong {
  color: #2C5F4F;
}

/* ===================================
   FOOTER
   =================================== */

footer {
  background-color: #2C5F4F;
  color: #F4F1EA;
  padding: 60px 20px 24px;
}

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

.footer-about,
.footer-contact,
.footer-nav,
.footer-legal {
  flex: 1 1 200px;
}

.footer-about img {
  height: 40px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-about p {
  color: #F4F1EA;
  font-size: 14px;
}

footer h3 {
  color: #D4A574;
  font-size: 18px;
  margin-bottom: 16px;
}

footer p {
  color: #F4F1EA;
  font-size: 14px;
  margin-bottom: 8px;
}

footer a {
  color: #F4F1EA;
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #D4A574;
}

.copyright {
  text-align: center;
  color: #F4F1EA;
  font-size: 14px;
  padding-top: 24px;
  border-top: 1px solid rgba(244, 241, 234, 0.2);
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2C5F4F;
  color: #F4F1EA;
  padding: 24px;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
  z-index: 150;
  display: none;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

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

.cookie-banner .container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.cookie-banner p {
  margin-bottom: 0;
  text-align: center;
  font-size: 14px;
}

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

.cookie-buttons button {
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.cookie-accept {
  background-color: #D4A574;
  color: #FFFFFF;
}

.cookie-accept:hover {
  background-color: #C19563;
}

.cookie-reject {
  background-color: transparent;
  color: #F4F1EA;
  border: 2px solid #F4F1EA;
}

.cookie-reject:hover {
  background-color: #F4F1EA;
  color: #2C5F4F;
}

.cookie-settings {
  background-color: transparent;
  color: #D4A574;
  text-decoration: underline;
}

.cookie-settings:hover {
  color: #C19563;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

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

.cookie-modal-content {
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 12px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
}

.cookie-modal h2 {
  margin-bottom: 24px;
}

.cookie-category {
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #F4F1EA;
}

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

.cookie-category p {
  color: #5A5A5A;
  font-size: 14px;
}

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

.cookie-toggle.disabled {
  background-color: #CCCCCC;
  cursor: not-allowed;
}

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

.cookie-toggle.active:after {
  left: 27px;
}

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

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

/* ===================================
   RESPONSIVE DESIGN - TABLET
   =================================== */

@media (min-width: 768px) {
  h1 {
    font-size: 56px;
  }

  h2 {
    font-size: 40px;
  }

  .mobile-menu-toggle {
    display: none;
  }

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

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

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

  .mission-vision .container {
    flex-direction: row;
  }

  .footer-content {
    justify-content: space-between;
  }

  .cookie-banner .container {
    flex-direction: row;
    justify-content: space-between;
  }

  .cookie-banner p {
    text-align: left;
    flex: 1;
  }
}

/* ===================================
   RESPONSIVE DESIGN - DESKTOP
   =================================== */

@media (min-width: 1024px) {
  .service-card {
    flex: 1 1 calc(33.333% - 24px);
  }

  .value-points {
    justify-content: space-between;
  }

  .cta-buttons {
    gap: 24px;
  }
}

/* ===================================
   ANIMATIONS & TRANSITIONS
   =================================== */

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

.hero,
.hero-subpage {
  animation: fadeIn 0.6s ease;
}

/* Smooth scroll for all devices */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

/* Focus styles for accessibility */
a:focus,
button:focus {
  outline: 2px solid #D4A574;
  outline-offset: 2px;
}

/* Print styles */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cta-banner,
  .cta-contact {
    display: none;
  }
}