:root {
  --color-oat: #E8DCC8;
  --color-seafoam: #A8D5C4;
  --color-powder-blue: #B8D4E8;
  --color-coral: #D97B6D;
  --color-sun-yellow: #F4D8A0;
  --color-navy: #2C3E50;
  --color-light-oat: #F5F1E8;
  --color-light-blue: #E6F0FF;
}

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

html, body {
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  background-color: var(--color-light-oat);
  color: var(--color-navy);
  line-height: 1.6;
  font-size: 16px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-navy);
  margin-bottom: 1.5rem;
}

h1 {
  font-size: 3rem;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2.2rem;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
  color: var(--color-navy);
  opacity: 0.95;
}

a {
  color: var(--color-coral);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--color-navy);
  text-decoration: underline;
}

/* Header & Navigation */
header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-navy);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.logo a {
  color: var(--color-navy);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-navy);
  transition: color 0.3s ease;
}

nav a:hover {
  color: var(--color-coral);
  text-decoration: none;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(232, 220, 200, 0.4);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 600px;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border-radius: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.hero h1 {
  margin-bottom: 1rem;
  color: var(--color-navy);
}

.hero p {
  font-size: 1.1rem;
  color: var(--color-navy);
  opacity: 0.9;
}

/* Sections */
section {
  padding: 5rem 2rem;
  background-color: var(--color-light-oat);
}

section:nth-child(even) {
  background-color: rgba(168, 213, 196, 0.15);
}

section:nth-child(3n) {
  background-color: rgba(184, 212, 232, 0.12);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  margin-bottom: 0.5rem;
}

.section-title p {
  font-size: 1.1rem;
  color: var(--color-navy);
  opacity: 0.85;
  max-width: 500px;
  margin: 0 auto;
}

/* Content with Image */
.content-with-image {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
}

.content-with-image.reverse {
  grid-template-columns: 1fr 1fr;
  direction: rtl;
}

.content-with-image.reverse > * {
  direction: ltr;
}

.content-text h3 {
  color: var(--color-navy);
  margin-bottom: 1.5rem;
}

.content-text p {
  margin-bottom: 1rem;
  font-size: 1rem;
}

.content-image {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.content-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 1.5rem;
}

/* Wave Separator */
.wave-separator {
  position: relative;
  height: 80px;
  background: var(--color-light-oat);
  overflow: hidden;
}

.wave-separator svg {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.product-card {
  background: white;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.product-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-seafoam) 0%, var(--color-powder-blue) 100%);
}

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

.product-info {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 0.5rem;
}

.product-audience {
  font-size: 0.85rem;
  color: var(--color-coral);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.product-focus {
  font-size: 0.9rem;
  background: rgba(168, 213, 196, 0.2);
  padding: 0.3rem 0.8rem;
  border-radius: 2rem;
  display: inline-block;
  width: fit-content;
  margin-bottom: 1rem;
  color: var(--color-navy);
}

.product-format {
  font-size: 0.85rem;
  color: var(--color-navy);
  opacity: 0.8;
  margin-bottom: 1rem;
}

.product-composition {
  font-size: 0.85rem;
  color: var(--color-navy);
  opacity: 0.85;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.product-composition li {
  margin-bottom: 0.3rem;
  list-style: none;
  padding-left: 1.2rem;
  position: relative;
}

.product-composition li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--color-coral);
}

.product-description {
  font-size: 0.95rem;
  color: var(--color-navy);
  opacity: 0.9;
  margin-bottom: 1rem;
}

.product-details {
  display: inline-block;
  color: var(--color-coral);
  font-weight: 500;
  padding-bottom: 0.3rem;
  border-bottom: 2px solid var(--color-coral);
  transition: all 0.3s ease;
}

.product-details:hover {
  color: var(--color-navy);
  border-bottom-color: var(--color-navy);
}

/* Form Styles */
.form-container {
  max-width: 500px;
  margin: 3rem auto;
  background: white;
  padding: 2.5rem;
  border-radius: 1.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

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

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

.form-group input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid rgba(168, 213, 196, 0.3);
  border-radius: 0.75rem;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-group input:focus {
  outline: none;
  border-color: var(--color-coral);
  box-shadow: 0 0 0 3px rgba(217, 123, 109, 0.1);
}

.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid rgba(168, 213, 196, 0.3);
  border-radius: 0.75rem;
  font-size: 1rem;
  min-height: 120px;
  resize: vertical;
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-group textarea:focus {
  outline: none;
  border-color: var(--color-coral);
  box-shadow: 0 0 0 3px rgba(217, 123, 109, 0.1);
}

.form-group input[type="checkbox"] {
  width: auto;
  margin-right: 0.5rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
}

.btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  background: var(--color-coral);
  color: white;
  border: none;
  border-radius: 2rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: 100%;
  font-family: inherit;
}

.btn:hover {
  background: var(--color-navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.btn:active {
  transform: translateY(0);
}

/* Footer */
footer {
  background: var(--color-navy);
  color: white;
  padding: 3rem 2rem;
  text-align: center;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  text-align: left;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: white;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer-section p, .footer-section a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
}

.footer-section a {
  display: block;
  margin-bottom: 0.5rem;
}

.footer-section a:hover {
  color: white;
}

.footer-contact {
  margin-bottom: 1rem;
}

.footer-contact p {
  margin-bottom: 0.5rem;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  h3 { font-size: 1.2rem; }

  section {
    padding: 3rem 1.5rem;
  }

  .navbar {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1rem;
  }

  nav ul {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .hero {
    min-height: 400px;
  }

  .hero-content {
    border-radius: 1.5rem;
    padding: 1.5rem;
  }

  .content-with-image {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .content-with-image.reverse {
    direction: ltr;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .form-container {
    margin: 2rem 1rem;
    padding: 1.5rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-section a {
    display: inline;
    margin: 0 0.5rem;
  }
}

/* Thank You Page */
.thank-you-container {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.thank-you-message {
  max-width: 500px;
  text-align: center;
  background: white;
  padding: 3rem;
  border-radius: 1.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.thank-you-message h2 {
  color: var(--color-coral);
  margin-bottom: 1rem;
}

.thank-you-message p {
  font-size: 1rem;
  margin-bottom: 2rem;
}

.thank-you-message a {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--color-coral);
  color: white;
  border-radius: 2rem;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.thank-you-message a:hover {
  background: var(--color-navy);
  text-decoration: none;
}

/* Legal Pages */
.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.legal-content h1 {
  margin-bottom: 0.5rem;
}

.legal-date {
  font-size: 0.9rem;
  color: var(--color-navy);
  opacity: 0.7;
  margin-bottom: 2rem;
}

.legal-content h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.legal-content h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.legal-content ol, .legal-content ul {
  margin-left: 2rem;
  margin-bottom: 1rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
  color: var(--color-navy);
  opacity: 0.95;
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  right: 0;
  max-width: 400px;
  background: var(--color-navy);
  color: white;
  padding: 1.5rem;
  border-radius: 1rem 1rem 0 0;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  animation: slideUp 0.3s ease;
}

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

.cookie-consent p {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

.cookie-consent a {
  color: var(--color-coral);
}

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

.cookie-buttons button {
  flex: 1;
  padding: 0.6rem 1rem;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.85rem;
}

.cookie-buttons .btn-accept {
  background: var(--color-coral);
  color: white;
}

.cookie-buttons .btn-accept:hover {
  background: var(--color-sun-yellow);
  color: var(--color-navy);
}

.cookie-buttons .btn-decline {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.cookie-buttons .btn-decline:hover {
  background: rgba(255, 255, 255, 0.3);
}

@media (max-width: 480px) {
  .cookie-consent {
    max-width: 100%;
    right: 0;
    left: 0;
    border-radius: 1rem 1rem 0 0;
  }

  .cookie-buttons {
    flex-direction: column;
  }
}
