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

:root {
  --color-bg: #fdfaf5;
  --color-accent-pink: #d992a2;
  --color-accent-green: #6b8e5e;
  --color-accent-beige: #f9f3e8;
}

html, body {
  font-family: 'Lato', sans-serif;
  color: #333;
  background-color: var(--color-bg);
  line-height: 1.84;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #333;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  margin-top: 1rem;
}

h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  margin-top: 0.75rem;
}

h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: 1.3rem;
}

body {
  overflow-x: hidden;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(253, 250, 245, 0.95);
  padding: 1.5rem 0;
  z-index: 1000;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(107, 142, 94, 0.1);
}

.navbar.scrolled {
  padding: 1rem 0;
  opacity: 0.92;
  transform: translateY(0);
}

.navbar-container {
  max-width: 1680px;
  margin: 0 auto;
  padding: 0 150px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #333;
  text-decoration: none;
  cursor: pointer;
}

.navbar-menu {
  list-style: none;
  display: flex;
  gap: 2.5rem;
}

.navbar-menu a {
  text-decoration: none;
  color: #333;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.navbar-menu a:hover {
  color: var(--color-accent-pink);
}

.navbar-menu a.active {
  color: var(--color-accent-pink);
  font-weight: 600;
}

main {
  margin-top: 80px;
}

.container-wide {
  max-width: 1680px;
  margin: 0 auto;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 150px;
}

section {
  padding: 5rem 0;
  animation: fadeInUp 0.8s ease-out;
}

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

.hero {
  background-color: var(--color-accent-beige);
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 0;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
}

.hero h1 {
  color: #333;
  margin-bottom: 1.5rem;
  font-size: 3.5rem;
  line-height: 1.2;
}

.hero-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.text-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 3rem;
}

.text-section.reversed {
  direction: rtl;
}

.text-section.reversed > * {
  direction: ltr;
}

.text-section img {
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: cover;
  animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.text-section-content {
  animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.text-section p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  line-height: 1.84;
  color: #333;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin: 3rem 0;
}

.card {
  background: #fff;
  padding: 2.5rem;
  border-radius: 8px;
  border: 2px solid rgba(217, 146, 162, 0.15);
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.card:hover {
  border-color: var(--color-accent-pink);
  box-shadow: 0 8px 20px rgba(217, 146, 162, 0.2);
  transform: translateY(-5px);
}

.card h4 {
  color: var(--color-accent-pink);
  margin-bottom: 1rem;
}

.card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.8;
}

.card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

table thead {
  background-color: var(--color-accent-green);
  color: #fff;
}

table th {
  padding: 1.2rem;
  text-align: left;
  font-weight: 600;
  border: none;
}

table td {
  padding: 1rem 1.2rem;
  border: none;
  font-size: 0.95rem;
}

table tbody tr:nth-child(odd) {
  background-color: rgba(107, 142, 94, 0.08);
}

table tbody tr:nth-child(even) {
  background-color: #fff;
}

.faq-item {
  margin: 1.5rem 0;
  border-bottom: 1px solid rgba(217, 146, 162, 0.2);
  padding-bottom: 1.5rem;
}

.faq-question {
  cursor: pointer;
  font-weight: 600;
  color: #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--color-accent-pink);
}

.faq-answer {
  display: none;
  color: #555;
  padding: 1rem 0;
  font-size: 0.95rem;
  line-height: 1.84;
}

.faq-answer.active {
  display: block;
  animation: fadeInUp 0.3s ease-out;
}

.toggle-icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-item.active .toggle-icon {
  transform: rotate(180deg);
}

.button {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  background-color: var(--color-accent-pink);
  color: #fff;
  text-decoration: none;
  border-radius: 25px;
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
}

.button:hover {
  background-color: #c67880;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(217, 146, 162, 0.3);
}

.button-secondary {
  background-color: var(--color-accent-green);
}

.button-secondary:hover {
  background-color: #5a7a50;
}

.quote-section {
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, rgba(217, 146, 162, 0.08) 0%, rgba(107, 142, 94, 0.08) 100%);
  border-radius: 8px;
  margin: 3rem 0;
}

.quote-section p {
  font-size: 1.3rem;
  font-style: italic;
  color: #333;
  margin: 0;
  line-height: 1.8;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #333;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(107, 142, 94, 0.3);
  border-radius: 6px;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent-pink);
  box-shadow: 0 0 0 3px rgba(217, 146, 162, 0.1);
}

.form-disclaimer {
  background-color: var(--color-accent-beige);
  padding: 1.2rem;
  border-radius: 6px;
  font-size: 0.85rem;
  color: #555;
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--color-accent-pink);
}

footer {
  background-color: #333;
  color: #fff;
  padding: 3rem 0;
  margin-top: 5rem;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 150px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: var(--color-accent-pink);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-section p {
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: #bbb;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
  display: block;
  margin-bottom: 0.5rem;
}

.footer-section a:hover {
  color: var(--color-accent-pink);
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem 150px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.85rem;
  color: #999;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #333;
  color: #fff;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 999;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
}

.cookie-banner.hidden {
  display: none;
}

.cookie-message {
  flex: 1;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-right: 2rem;
}

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

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

.cookie-accept {
  background-color: var(--color-accent-pink);
  color: #fff;
}

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

.cookie-reject {
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.cookie-reject:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

.cookie-learn {
  background-color: transparent;
  color: var(--color-accent-pink);
  text-decoration: underline;
}

.cookie-learn:hover {
  color: #ff9aad;
}

.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal.active {
  display: block;
}

.modal-content {
  background-color: var(--color-bg);
  margin: 5% auto;
  padding: 3rem;
  border-radius: 8px;
  width: 90%;
  max-width: 700px;
  max-height: 80vh;
  overflow-y: auto;
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.modal-header h2 {
  margin: 0;
}

.close-modal {
  font-size: 1.8rem;
  font-weight: bold;
  color: #333;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  transition: color 0.3s ease;
}

.close-modal:hover {
  color: var(--color-accent-pink);
}

.modal-content h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
}

.modal-content p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.84;
  color: #555;
}

.modal-content ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.modal-content li {
  margin-bottom: 0.5rem;
  color: #555;
}

.disclaimer-box {
  background-color: var(--color-accent-beige);
  padding: 2rem;
  border-radius: 8px;
  border-left: 4px solid var(--color-accent-pink);
  margin: 2rem 0;
  font-size: 0.9rem;
  line-height: 1.8;
  color: #555;
}

.success-message {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2001;
  background-color: #fff;
  padding: 3rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  animation: slideDown 0.3s ease-out;
}

.success-message.active {
  display: block;
}

.success-message h2 {
  color: var(--color-accent-green);
  margin-bottom: 1rem;
}

.success-message p {
  color: #555;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

@media (max-width: 1024px) {
  .container {
    padding: 0 60px;
  }
  
  .navbar-container {
    padding: 0 60px;
  }
  
  .footer-container {
    padding: 0 60px;
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-bottom {
    padding: 2rem 60px 0;
  }
  
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .text-section {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .navbar-menu {
    display: none;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .container {
    padding: 0 30px;
  }
  
  .navbar-container {
    padding: 0 30px;
  }
  
  .footer-container {
    padding: 0 30px;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-bottom {
    padding: 2rem 30px 0;
  }
  
  .card-grid {
    grid-template-columns: 1fr;
  }
  
  .hero {
    min-height: auto;
    padding: 3rem 0;
  }
  
  .hero-image {
    position: static;
    width: 100%;
    height: auto;
    margin-top: 2rem;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .cookie-banner {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .cookie-message {
    margin-right: 0;
  }
  
  .modal-content {
    width: 95%;
    padding: 1.5rem;
    margin: 20% auto;
  }
}
