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

:root {
  --color-beige: #f5f1ea;
  --color-olive: #e8e4d9;
  --color-turquoise: #4db8b8;
  --color-emerald: #2d7d6e;
  --color-amber: #d4a574;
  --color-graphite: #2a2a2a;
  --color-gray: #666;
  --color-light-gray: #f9f9f9;
  --color-white: #ffffff;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: var(--color-graphite);
  background: linear-gradient(135deg, var(--color-beige) 0%, var(--color-olive) 100%);
  min-height: 100vh;
}

.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-emerald);
}

.logo-text {
  background: linear-gradient(135deg, var(--color-emerald) 0%, var(--color-turquoise) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-link {
  color: var(--color-graphite);
  margin: 0 0.5rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-turquoise);
}

.navbar-toggler {
  border: none;
  padding: 0.5rem;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(42, 42, 42, 0.7)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(45, 125, 110, 0.1) 0%, rgba(77, 184, 184, 0.1) 100%);
}

.hero-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 70%;
  height: 150%;
  background: radial-gradient(circle, rgba(77, 184, 184, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 20s infinite ease-in-out;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(30px, -30px) rotate(5deg);
  }
  66% {
    transform: translate(-20px, 20px) rotate(-5deg);
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0c16.569 0 30 13.431 30 30 0 16.569-13.431 30-30 30C13.431 60 0 46.569 0 30 0 13.431 13.431 0 30 0zm0 58c15.464 0 28-12.536 28-28S45.464 2 30 2 2 14.536 2 30s12.536 28 28 28z' fill='%232d7d6e' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 2;
  transform: translateX(-30px);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--color-graphite);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  background: linear-gradient(135deg, var(--color-graphite) 0%, var(--color-emerald) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--color-gray);
  margin-bottom: 2rem;
  max-width: 600px;
}

.btn-hero {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--color-turquoise) 0%, var(--color-emerald) 100%);
  color: var(--color-white);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(77, 184, 184, 0.3);
}

.btn-hero:hover {
  transform: translateY(-2px) rotate(1deg);
  box-shadow: 0 6px 25px rgba(77, 184, 184, 0.4);
  color: var(--color-white);
  text-decoration: none;
}

.section-cards,
.section-wave,
.section-superfoods,
.section-care,
.section-tips,
.section-faq,
.section-testimonials,
.section-expert,
.section-supplements {
  padding: 5rem 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--color-graphite) 0%, var(--color-emerald) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-intro {
  text-align: center;
  font-size: 1.1rem;
  color: var(--color-gray);
  max-width: 700px;
  margin: 0 auto 3rem;
}

.card-grid {
  margin-top: 3rem;
}

.info-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  padding: 2.5rem;
  border-radius: 20px;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.info-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 8px 30px rgba(77, 184, 184, 0.2);
}

.card-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.info-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-emerald);
  margin-bottom: 1rem;
}

.info-card p {
  color: var(--color-gray);
  line-height: 1.7;
}

.section-wave {
  background: rgba(255, 255, 255, 0.5);
  clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
  padding: 7rem 0;
}

.wave-image {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.wave-content {
  padding-left: 2rem;
}

.wave-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-emerald);
  margin-bottom: 1.5rem;
}

.wave-list {
  list-style: none;
  padding: 0;
}

.wave-list li {
  padding: 0.75rem 0 0.75rem 2rem;
  position: relative;
  color: var(--color-gray);
}

.wave-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-turquoise);
  font-weight: 700;
  font-size: 1.2rem;
}

.superfood-grid {
  margin-top: 3rem;
}

.superfood-card {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 15px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.superfood-card:hover {
  transform: translateY(-8px) rotate(1deg);
  box-shadow: 0 8px 25px rgba(77, 184, 184, 0.2);
}

.superfood-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.superfood-card h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-emerald);
  margin-bottom: 0.75rem;
}

.superfood-card p {
  color: var(--color-gray);
  font-size: 0.95rem;
}

.section-care {
  background: rgba(255, 255, 255, 0.4);
}

.care-image {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.care-content {
  padding-right: 2rem;
}

.care-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-emerald);
  margin-bottom: 1.5rem;
}

.care-item {
  margin-top: 1.5rem;
}

.care-item h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-turquoise);
  margin-bottom: 0.5rem;
}

.care-item p {
  color: var(--color-gray);
}

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

.tip-card {
  background: rgba(255, 255, 255, 0.8);
  padding: 2rem;
  border-radius: 15px;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.tip-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(212, 165, 116, 0.2);
}

.tip-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-amber);
  opacity: 0.3;
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}

.tip-card h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-emerald);
  margin-bottom: 0.75rem;
}

.tip-card p {
  color: var(--color-gray);
  font-size: 0.95rem;
}

.section-faq {
  background: rgba(255, 255, 255, 0.3);
}

.faq-container {
  max-width: 800px;
  margin: 3rem auto 0;
}

.faq-item {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateX(5px);
  box-shadow: 0 6px 25px rgba(77, 184, 184, 0.15);
}

.faq-item h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-emerald);
  margin-bottom: 1rem;
}

.faq-item p {
  color: var(--color-gray);
  line-height: 1.7;
}

.testimonial-grid {
  margin-top: 3rem;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 30px rgba(77, 184, 184, 0.2);
}

.testimonial-text {
  font-style: italic;
  color: var(--color-gray);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.testimonial-author {
  font-weight: 600;
  color: var(--color-turquoise);
}

.section-expert {
  background: linear-gradient(135deg, rgba(77, 184, 184, 0.15) 0%, rgba(45, 125, 110, 0.15) 100%);
}

.expert-quote {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  padding: 3rem;
  border-radius: 20px;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.quote-icon {
  font-size: 5rem;
  color: var(--color-turquoise);
  opacity: 0.2;
  position: absolute;
  top: 1rem;
  left: 2rem;
}

.quote-text {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--color-gray);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.quote-author {
  font-weight: 600;
  color: var(--color-emerald);
  text-align: right;
  font-size: 1.1rem;
  border-bottom: 3px solid var(--color-turquoise);
  display: inline-block;
  padding-bottom: 0.5rem;
}

.supplement-grid {
  margin-top: 3rem;
}

.supplement-point {
  background: rgba(255, 255, 255, 0.6);
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.supplement-point:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(212, 165, 116, 0.2);
}

.supplement-point h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-amber);
  margin-bottom: 1rem;
}

.supplement-point p {
  color: var(--color-gray);
  line-height: 1.7;
}

.section-cta {
  background: linear-gradient(135deg, var(--color-emerald) 0%, var(--color-turquoise) 100%);
  padding: 5rem 0;
  text-align: center;
}

.cta-content h2 {
  color: var(--color-white);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.btn-cta {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--color-white);
  color: var(--color-emerald);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-cta:hover {
  transform: translateY(-3px) rotate(-1deg);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
  color: var(--color-emerald);
  text-decoration: none;
}

.footer {
  background: linear-gradient(135deg, var(--color-graphite) 0%, rgba(42, 42, 42, 0.95) 100%);
  color: rgba(255, 255, 255, 0.8);
  padding: 3rem 0 1rem;
}

.footer-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-turquoise);
  margin-bottom: 1rem;
}

.footer h6 {
  color: var(--color-white);
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(42, 42, 42, 0.98);
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  display: none;
}

.cookie-banner.show {
  display: block;
  animation: slideUp 0.5s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

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

.cookie-content p {
  color: var(--color-white);
  margin: 0;
  flex: 1;
  min-width: 250px;
}

.cookie-content a {
  color: var(--color-turquoise);
  text-decoration: underline;
}

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

.btn-cookie {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-cookie.accept {
  background: linear-gradient(135deg, var(--color-turquoise) 0%, var(--color-emerald) 100%);
  color: var(--color-white);
}

.btn-cookie.accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(77, 184, 184, 0.4);
}

.btn-cookie.reject {
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-cookie.reject:hover {
  background: rgba(255, 255, 255, 0.2);
}

.about-hero,
.contact-hero {
  background: linear-gradient(135deg, rgba(77, 184, 184, 0.2) 0%, rgba(45, 125, 110, 0.2) 100%);
  padding: 5rem 0 3rem;
  text-align: center;
}

.page-title {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--color-graphite) 0%, var(--color-emerald) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.page-subtitle {
  font-size: 1.2rem;
  color: var(--color-gray);
}

.about-content,
.contact-content {
  padding: 5rem 0;
}

.about-image {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.about-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-emerald);
  margin-bottom: 1.5rem;
}

.about-list {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}

.about-list li {
  padding: 0.75rem 0 0.75rem 2rem;
  position: relative;
  color: var(--color-gray);
}

.about-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--color-turquoise);
  font-weight: 700;
}

.philosophy-section,
.expert-section,
.gradual-section,
.expert-quote-section,
.values-section {
  margin-top: 5rem;
}

.philosophy-card,
.expert-point,
.value-card {
  background: rgba(255, 255, 255, 0.7);
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.philosophy-card:hover,
.expert-point:hover,
.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(77, 184, 184, 0.2);
}

.philosophy-card h4,
.expert-point h5,
.value-card h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-turquoise);
  margin-bottom: 1rem;
}

.philosophy-card p,
.expert-point p,
.value-card p {
  color: var(--color-gray);
}

.expert-quote-large {
  max-width: 900px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(77, 184, 184, 0.1) 0%, rgba(45, 125, 110, 0.1) 100%);
  padding: 3rem;
  border-radius: 20px;
  position: relative;
  border-left: 5px solid var(--color-turquoise);
}

.contact-info {
  background: rgba(255, 255, 255, 0.7);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
}

.contact-info h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-emerald);
  margin-bottom: 2rem;
}

.contact-item {
  margin-bottom: 1.5rem;
}

.contact-item h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-turquoise);
  margin-bottom: 0.5rem;
}

.contact-item p {
  color: var(--color-gray);
}

.contact-form-container {
  background: rgba(255, 255, 255, 0.7);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.contact-form-container h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-emerald);
  margin-bottom: 2rem;
}

.form-group label {
  font-weight: 600;
  color: var(--color-graphite);
  margin-bottom: 0.5rem;
}

.form-control {
  border: 2px solid rgba(77, 184, 184, 0.2);
  border-radius: 10px;
  padding: 0.75rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--color-turquoise);
  box-shadow: 0 0 0 0.2rem rgba(77, 184, 184, 0.25);
}

.form-check-label {
  font-size: 0.9rem;
  color: var(--color-gray);
}

.form-check-label a {
  color: var(--color-turquoise);
}

.btn-submit {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, var(--color-turquoise) 0%, var(--color-emerald) 100%);
  color: var(--color-white);
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(77, 184, 184, 0.3);
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(77, 184, 184, 0.4);
}

.thankyou-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 0;
}

.thankyou-content {
  text-align: center;
  background: rgba(255, 255, 255, 0.8);
  padding: 4rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.thankyou-icon {
  font-size: 5rem;
  color: var(--color-turquoise);
  margin-bottom: 1rem;
}

.thankyou-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-emerald);
  margin-bottom: 1rem;
}

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

.btn-home {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--color-turquoise) 0%, var(--color-emerald) 100%);
  color: var(--color-white);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(77, 184, 184, 0.3);
}

.btn-home:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(77, 184, 184, 0.4);
  color: var(--color-white);
  text-decoration: none;
}

.policy-section {
  padding: 5rem 0;
}

.update-date {
  text-align: center;
  color: var(--color-gray);
  font-style: italic;
  margin-bottom: 3rem;
}

.policy-content {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.8);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.policy-content h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-emerald);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.policy-content h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-turquoise);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.policy-content p {
  color: var(--color-gray);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.policy-content ul {
  color: var(--color-gray);
  line-height: 1.8;
  margin-bottom: 1rem;
  padding-left: 2rem;
}

.policy-content li {
  margin-bottom: 0.5rem;
}

.policy-content a {
  color: var(--color-turquoise);
  text-decoration: underline;
}

.policy-content table {
  margin: 2rem 0;
}

.policy-content table th {
  background: var(--color-emerald);
  color: var(--color-white);
}

.disclaimer-content .alert {
  border-radius: 10px;
  margin-bottom: 2rem;
}

@media (max-width: 991px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-content {
    transform: translateX(0);
  }

  .section-title {
    font-size: 2rem;
  }

  .page-title {
    font-size: 2.5rem;
  }

  .wave-content,
  .care-content {
    padding: 2rem 0;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    justify-content: center;
    width: 100%;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .page-title {
    font-size: 2rem;
  }

  .btn-hero,
  .btn-cta,
  .btn-home {
    padding: 0.875rem 2rem;
    font-size: 0.95rem;
  }

  .policy-content {
    padding: 2rem 1.5rem;
  }

  .contact-form-container {
    padding: 1.5rem;
  }
}
