@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Open+Sans:wght@400;600;700&display=swap');

:root {
  --primary-color: #4CAF50;
  --accent-yellow: #FFC107;
  --accent-blue: #2196F3;
  --accent-brown: #795548;
  --text-dark: #2C3E50;
  --text-light: #7F8C8D;
  --bg-light: #F8F9FA;
  --bg-white: #FFFFFF;
  --border-color: #E0E0E0;
  --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--text-dark);
}

h1 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 20px;
}

h2 {
  font-size: 2.2rem;
  line-height: 1.3;
  margin-bottom: 15px;
}

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

p {
  margin-bottom: 15px;
  color: var(--text-dark);
  font-size: 1rem;
  line-height: 1.8;
}

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

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

header {
  background-color: var(--bg-white);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.header-content {
  max-width: 1300px;
  margin: 0 auto;
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 10px;
}

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

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

nav ul li a {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  color: var(--text-dark);
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

nav ul li a:hover {
  color: var(--primary-color);
  text-decoration: none;
}

.container-wide {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 30px;
}

section {
  padding: 80px 30px;
}

section.hero {
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.08) 0%, rgba(33, 150, 243, 0.05) 100%);
  padding: 120px 30px;
  text-align: center;
}

.hero-content {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.hero-text h1 {
  color: var(--primary-color);
  margin-bottom: 25px;
}

.hero-text p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 30px;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: var(--shadow);
  object-fit: cover;
  max-height: 400px;
}

section.intro {
  background-color: var(--bg-light);
}

.intro-content {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.intro-text h2 {
  color: var(--text-dark);
  margin-bottom: 20px;
}

.intro-text p {
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.8;
}

.intro-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: var(--shadow);
  object-fit: cover;
  max-height: 350px;
}

.ingredients-section {
  max-width: 1300px;
  margin: 0 auto;
}

.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 40px;
}

.ingredient-card {
  background-color: var(--bg-white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.ingredient-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

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

.ingredient-card-content {
  padding: 25px;
}

.ingredient-card h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
}

.ingredient-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

section.benefits {
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.08) 0%, rgba(255, 193, 7, 0.05) 100%);
}

.benefits-content {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.benefits-text h2 {
  margin-bottom: 20px;
}

.benefits-list {
  list-style: none;
}

.benefits-list li {
  padding: 15px 0;
  padding-left: 30px;
  position: relative;
  color: var(--text-dark);
  line-height: 1.8;
}

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

.benefits-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: var(--shadow);
  object-fit: cover;
  max-height: 400px;
}

section.lifestyle {
  background-color: var(--bg-light);
}

.lifestyle-content {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.lifestyle-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: var(--shadow);
  object-fit: cover;
  max-height: 400px;
}

.lifestyle-text h2 {
  margin-bottom: 20px;
}

.lifestyle-text p {
  margin-bottom: 15px;
}

section.skincare {
  background: linear-gradient(135deg, rgba(33, 150, 243, 0.08) 0%, rgba(121, 85, 72, 0.05) 100%);
}

.skincare-content {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.skincare-text h2 {
  margin-bottom: 20px;
}

.skincare-text p {
  margin-bottom: 15px;
}

.skincare-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: var(--shadow);
  object-fit: cover;
  max-height: 400px;
}

section.myths {
  max-width: 1300px;
  margin: 0 auto;
}

.myths-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.myth-card {
  background-color: var(--bg-light);
  padding: 30px;
  border-radius: 10px;
  border-left: 4px solid var(--primary-color);
  transition: all 0.3s ease;
}

.myth-card:hover {
  box-shadow: var(--shadow);
}

.myth-card h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.myth-card p {
  color: var(--text-dark);
  font-size: 0.95rem;
}

section.nutrition {
  background-color: var(--bg-white);
}

.nutrition-content {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.nutrition-text h2 {
  margin-bottom: 20px;
}

.nutrition-text p {
  margin-bottom: 15px;
}

.nutrition-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: var(--shadow);
  object-fit: cover;
  max-height: 400px;
}

section.routine {
  background-color: var(--bg-light);
}

.routine-content {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.routine-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: var(--shadow);
  object-fit: cover;
  max-height: 400px;
}

.routine-text h2 {
  margin-bottom: 20px;
}

section.history {
  background: linear-gradient(135deg, rgba(121, 85, 72, 0.08) 0%, rgba(76, 175, 80, 0.05) 100%);
  max-width: 1300px;
  margin: 0 auto;
}

.history-content {
  max-width: 1300px;
  margin: 0 auto;
}

section.future {
  background-color: var(--bg-light);
  max-width: 1300px;
  margin: 0 auto;
}

.future-content {
  max-width: 1300px;
  margin: 0 auto;
}

section.glossary {
  background-color: var(--bg-white);
  max-width: 1300px;
  margin: 0 auto;
}

.glossary-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.glossary-item {
  padding: 20px;
  border-left: 3px solid var(--primary-color);
  background-color: var(--bg-light);
  border-radius: 5px;
}

.glossary-item dt {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 8px;
  font-size: 1rem;
}

.glossary-item dd {
  color: var(--text-dark);
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

section.reading {
  background-color: var(--bg-light);
  max-width: 1300px;
  margin: 0 auto;
}

.reading-list {
  list-style: none;
  margin-top: 30px;
}

.reading-list li {
  padding: 15px 20px;
  margin-bottom: 15px;
  background-color: var(--bg-white);
  border-left: 4px solid var(--primary-color);
  border-radius: 5px;
  transition: all 0.3s ease;
}

.reading-list li:hover {
  box-shadow: var(--shadow);
  transform: translateX(5px);
}

.reading-list li a {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
}

section.cta-final {
  background: linear-gradient(135deg, var(--primary-color) 0%, rgba(76, 175, 80, 0.8) 100%);
  color: white;
  text-align: center;
  max-width: 1300px;
  margin: 0 auto;
}

.cta-final h2 {
  color: white;
  margin-bottom: 20px;
}

.cta-final p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.1rem;
  margin-bottom: 30px;
}

button, .btn {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 5px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  display: inline-block;
}

button:hover, .btn:hover {
  background-color: var(--accent-blue);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(76, 175, 80, 0.3);
}

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

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

button.secondary:hover {
  background-color: var(--primary-color);
  color: white;
}

footer {
  background-color: var(--text-dark);
  color: white;
  padding: 50px 30px;
  margin-top: 80px;
}

.footer-content {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  color: var(--primary-color);
  margin-bottom: 20px;
  font-size: 1rem;
}

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

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

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
  padding-top: 25px;
  text-align: center;
}

.footer-divider p {
  margin-bottom: 10px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.disclaimer-banner {
  background-color: rgba(255, 193, 7, 0.1);
  border-left: 4px solid var(--accent-yellow);
  padding: 20px 30px;
  margin-bottom: 40px;
  border-radius: 5px;
}

.disclaimer-banner p {
  color: var(--text-dark);
  margin-bottom: 0;
  font-size: 0.95rem;
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--text-dark);
  color: white;
  padding: 20px 30px;
  box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.2);
  z-index: 999;
  display: none;
}

.cookie-banner.active {
  display: block;
}

.cookie-content {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.cookie-text p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.cookie-buttons {
  display: flex;
  gap: 15px;
  white-space: nowrap;
}

.cookie-buttons button {
  padding: 10px 20px;
  font-size: 0.9rem;
}

.cookie-buttons .btn-decline {
  background-color: transparent;
  border: 2px solid white;
  color: white;
}

.cookie-buttons .btn-decline:hover {
  background-color: white;
  color: var(--text-dark);
}

.cookie-buttons .btn-learn {
  background-color: var(--accent-blue);
}

.cookie-buttons .btn-learn:hover {
  background-color: var(--accent-yellow);
}

form {
  max-width: 600px;
  margin: 30px auto;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 10px;
  color: var(--text-dark);
  font-weight: 600;
  font-family: 'Open Sans', sans-serif;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  color: var(--text-dark);
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
  max-width: 1300px;
}

.contact-info-item {
  background-color: var(--bg-light);
  padding: 25px;
  border-radius: 10px;
  border-left: 4px solid var(--primary-color);
}

.contact-info-item h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
}

.contact-info-item p {
  color: var(--text-dark);
  margin-bottom: 10px;
}

.faq-item {
  background-color: var(--bg-light);
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-left: 4px solid var(--primary-color);
}

.faq-item:hover {
  box-shadow: var(--shadow);
}

.faq-item.active {
  background-color: rgba(76, 175, 80, 0.05);
  box-shadow: var(--shadow);
}

.faq-item h3 {
  color: var(--primary-color);
  margin-bottom: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-toggle {
  display: inline-block;
  width: 24px;
  height: 24px;
  text-align: center;
  line-height: 24px;
  transition: transform 0.3s ease;
}

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

.faq-answer {
  display: none;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid var(--border-color);
  color: var(--text-dark);
}

.faq-item.active .faq-answer {
  display: block;
}

.about-section h2 {
  margin-bottom: 20px;
}

.about-section p {
  margin-bottom: 15px;
  line-height: 1.8;
}

.thank-you-message {
  text-align: center;
  padding: 60px 30px;
}

.thank-you-message h1 {
  color: var(--primary-color);
  margin-bottom: 20px;
}

.thank-you-message p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--text-light);
}

.disclaimer-full {
  max-width: 1300px;
  margin: 0 auto;
  background-color: var(--bg-light);
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
}

.disclaimer-full h2 {
  color: var(--primary-color);
  margin-bottom: 20px;
}

.disclaimer-full h3 {
  color: var(--text-dark);
  margin-top: 25px;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.disclaimer-full p, .disclaimer-full li {
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 15px;
}

.disclaimer-full ul {
  margin-left: 20px;
}

.disclaimer-full ul li {
  margin-bottom: 10px;
}

.policy-section {
  max-width: 1300px;
  margin: 0 auto;
  margin-bottom: 40px;
}

.policy-section h2 {
  color: var(--primary-color);
  margin-bottom: 20px;
}

.policy-section h3 {
  color: var(--text-dark);
  margin-top: 25px;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.policy-section p, .policy-section li {
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 15px;
}

.policy-section ul, .policy-section ol {
  margin-left: 20px;
}

.policy-section ul li, .policy-section ol li {
  margin-bottom: 10px;
}

.for-mens-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 40px;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}

.for-mens-card {
  background-color: var(--bg-white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.for-mens-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.for-mens-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.for-mens-card-content {
  padding: 30px;
}

.for-mens-card h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
}

.for-mens-card p {
  color: var(--text-dark);
  font-size: 0.95rem;
  line-height: 1.8;
}

@media (max-width: 1024px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  section {
    padding: 60px 20px;
  }

  .hero-content,
  .intro-content,
  .benefits-content,
  .lifestyle-content,
  .skincare-content,
  .nutrition-content,
  .routine-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .ingredients-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .myths-grid,
  .glossary-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }

  nav ul {
    gap: 15px;
  }

  .for-mens-grid {
    grid-template-columns: 1fr;
  }

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

  .cookie-buttons {
    justify-content: center;
  }

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

@media (max-width: 768px) {
  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.3rem;
  }

  h3 {
    font-size: 1.1rem;
  }

  section {
    padding: 40px 15px;
  }

  .header-content {
    padding: 12px 15px;
  }

  nav ul {
    flex-direction: column;
    gap: 10px;
  }

  nav ul li a {
    font-size: 0.85rem;
  }

  .hero-image img,
  .intro-image img,
  .benefits-image img,
  .lifestyle-image img,
  .skincare-image img,
  .nutrition-image img,
  .routine-image img {
    max-height: 250px;
  }

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

  .ingredient-card img {
    height: 200px;
  }

  .for-mens-card img {
    height: 200px;
  }

  button, .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

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

  footer {
    padding: 30px 15px;
  }

  .cookie-banner {
    padding: 15px;
  }

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

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

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

  form {
    max-width: 100%;
  }

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

@media (max-width: 480px) {
  h1 {
    font-size: 1.3rem;
  }

  h2 {
    font-size: 1.1rem;
  }

  h3 {
    font-size: 1rem;
  }

  section {
    padding: 30px 10px;
  }

  .header-content {
    flex-direction: column;
    gap: 10px;
    padding: 10px;
  }

  .logo {
    font-size: 1.2rem;
  }

  nav ul {
    width: 100%;
    justify-content: center;
    gap: 5px;
  }

  button, .btn {
    width: 100%;
    padding: 10px;
  }

  .faq-item h3 {
    font-size: 1rem;
  }

  p {
    font-size: 0.9rem;
  }
}
