:root {
  --primary: #5A8D8B;
  --accent-gold: #F0C987;
  --accent-brown: #7F6E5E;
  --accent-light: #EAEAEA;
  --white: #FFFFFF;
  --dark: #1A1A1A;
  --text-light: #4A4A4A;
  --text-gray: #666666;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-light);
  background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  color: var(--primary);
}

h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 2rem;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  letter-spacing: -0.3px;
}

h3 {
  font-size: 1.5rem;
  line-height: 1.4;
  margin-bottom: 1rem;
}

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

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

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 1rem 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

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

nav a {
  text-decoration: none;
  color: var(--text-light);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

nav a:hover {
  color: var(--primary);
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-gold);
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

main {
  margin-top: 80px;
}

.section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero {
  background: linear-gradient(135deg, rgba(90, 141, 139, 0.8) 0%, rgba(127, 110, 94, 0.8) 100%), url('images/hero-dawn.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--white);
  text-align: center;
  padding: 120px 20px;
  margin-top: 80px;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: 3rem;
}

.hero p {
  color: var(--accent-light);
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.intro-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.intro-text {
  order: 2;
}

.intro-image {
  order: 1;
}

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

.benefit-card {
  background-color: var(--white);
  border: 2px solid var(--accent-light);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(90, 141, 139, 0.15);
  border-color: var(--primary);
}

.benefit-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
}

.benefit-card h3 {
  margin-bottom: 0.5rem;
}

.benefit-card p {
  font-size: 0.95rem;
}

.nutrition-section {
  background-color: var(--accent-light);
  border-left: 4px solid var(--primary);
  padding: 2rem;
  border-radius: 4px;
}

.nutrition-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.nutrition-list li {
  padding-left: 2rem;
  position: relative;
}

.nutrition-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
  font-size: 1.2rem;
}

.vitamins-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.vitamins-image {
  order: 2;
}

.vitamins-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
}

.vitamins-table th,
.vitamins-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--accent-light);
}

.vitamins-table th {
  background-color: var(--primary);
  color: var(--white);
  font-weight: 600;
}

.vitamins-table tr:hover {
  background-color: var(--accent-light);
}

.skin-care-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.skin-card {
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.skin-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(90, 141, 139, 0.12);
}

.skin-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.skin-card-content {
  padding: 1.5rem;
}

.skin-card h3 {
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
}

.skin-card p {
  font-size: 0.9rem;
  line-height: 1.6;
}

.stress-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.stress-image {
  order: 1;
}

.stress-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.stress-list li {
  padding: 1rem;
  background-color: var(--accent-light);
  border-radius: 6px;
  padding-left: 3rem;
  position: relative;
}

.stress-list li::before {
  content: '→';
  position: absolute;
  left: 1rem;
  color: var(--primary);
  font-weight: bold;
  font-size: 1rem;
}

.hydration-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.hydration-image {
  order: 2;
}

.hydration-content {
  order: 1;
}

.hydration-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
}

.hydration-table th,
.hydration-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--accent-light);
}

.hydration-table th {
  background-color: var(--primary);
  color: var(--white);
  font-weight: 600;
}

.products-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.product-card {
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--white) 100%);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 28px rgba(90, 141, 139, 0.15);
}

.product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.product-card-content {
  padding: 2rem;
}

.product-card h3 {
  margin-bottom: 1rem;
  color: var(--primary);
}

.product-card p {
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-section {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--accent-light);
  padding-bottom: 1.5rem;
}

.faq-question {
  font-weight: 600;
  color: var(--primary);
  font-size: 1.05rem;
  margin-bottom: 0.8rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-question.active::after {
  transform: rotate(45deg);
}

.faq-answer {
  color: var(--text-gray);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer.active {
  max-height: 500px;
}

.daily-life-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.daily-life-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.daily-life-item {
  background-color: var(--accent-light);
  padding: 1.5rem;
  border-radius: 6px;
  border-left: 4px solid var(--primary);
}

.daily-life-item h4 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.final-cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-brown) 100%);
  color: var(--white);
  text-align: center;
  padding: 4rem 2rem;
  border-radius: 8px;
  margin-bottom: 3rem;
}

.final-cta h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.final-cta p {
  color: var(--accent-light);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.cta-button {
  display: inline-block;
  background-color: var(--accent-gold);
  color: var(--dark);
  padding: 0.8rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid var(--accent-gold);
  cursor: pointer;
  font-size: 1rem;
}

.cta-button:hover {
  background-color: transparent;
  color: var(--accent-gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(240, 201, 135, 0.3);
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  background-color: var(--accent-light);
  padding: 3rem;
  border-radius: 8px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
}

.contact-item strong {
  color: var(--primary);
  min-width: 100px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 600;
  color: var(--primary);
  font-size: 0.95rem;
}

.form-group input {
  padding: 0.8rem;
  border: 2px solid var(--primary);
  border-radius: 4px;
  font-family: inherit;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.form-group input:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(240, 201, 135, 0.1);
}

.form-disclaimer {
  background-color: var(--white);
  padding: 1rem;
  border-left: 3px solid var(--accent-brown);
  border-radius: 4px;
  font-size: 0.85rem;
  color: var(--text-gray);
  line-height: 1.6;
}

.submit-button {
  background-color: var(--primary);
  color: var(--white);
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-button:hover {
  background-color: var(--accent-brown);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(90, 141, 139, 0.2);
}

.submit-button:active {
  transform: translateY(0);
}

footer {
  background-color: var(--primary);
  color: var(--white);
  padding: 3rem 2rem;
  margin-top: 4rem;
}

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

.footer-section h4 {
  color: var(--accent-gold);
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.footer-section ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-section a {
  color: var(--accent-light);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
  cursor: pointer;
}

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

.footer-bottom {
  border-top: 1px solid rgba(240, 201, 135, 0.2);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--accent-light);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  border-top: 3px solid var(--primary);
  padding: 1.5rem 2rem;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 999;
  display: none;
  max-width: 100%;
}

.cookie-banner.show {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.cookie-message {
  flex: 1;
  min-width: 250px;
}

.cookie-message p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-gray);
}

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

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

.cookie-accept {
  background-color: var(--primary);
  color: var(--white);
}

.cookie-accept:hover {
  background-color: var(--accent-brown);
}

.cookie-reject {
  background-color: var(--accent-light);
  color: var(--text-light);
}

.cookie-reject:hover {
  background-color: #D9D9D9;
}

.cookie-learn {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.cookie-learn:hover {
  background-color: var(--primary);
  color: var(--white);
}

.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  overflow-y: auto;
}

.modal.show {
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-content {
  background-color: var(--white);
  padding: 2.5rem;
  border-radius: 8px;
  max-width: 700px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  animation: slideIn 0.3s ease;
}

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

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid var(--accent-light);
  padding-bottom: 1rem;
}

.modal-header h2 {
  margin: 0;
}

.modal-close {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--text-light);
  cursor: pointer;
  background: none;
  border: none;
  transition: color 0.3s ease;
}

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

.thank-you-modal {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-brown) 100%);
  color: var(--white);
  text-align: center;
  padding: 3rem;
}

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

.thank-you-modal p {
  color: var(--accent-light);
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    gap: 1rem;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background-color: var(--white);
    padding: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: none;
  }

  nav ul.show {
    display: flex;
  }

  .intro-section,
  .vitamins-section,
  .stress-section,
  .hydration-section,
  .daily-life-section {
    grid-template-columns: 1fr;
  }

  .intro-text,
  .intro-image,
  .vitamins-image,
  .stress-image,
  .hydration-content,
  .hydration-image {
    order: unset;
  }

  .benefits-grid,
  .skin-care-section,
  .products-section {
    grid-template-columns: 1fr;
  }

  .nutrition-list {
    grid-template-columns: 1fr;
  }

  .contact-section {
    grid-template-columns: 1fr;
  }

  .footer-container {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 2rem;
  }

  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.4rem;
  }

  .cookie-banner.show {
    flex-direction: column;
    gap: 1rem;
  }

  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-buttons button {
    width: 100%;
  }

  .section {
    padding: 40px 20px;
  }

  main {
    margin-top: 60px;
  }

  header {
    padding: 0.75rem 0;
  }
}
