:root {
  --primary: #7FFFD4;
  --accent-terracotta: #E2725B;
  --accent-beige: #F5DEB3;
  --accent-dark-blue: #005F60;
  --text-dark: #1a1a1a;
  --text-light: #f5f5f5;
  --bg-light: #ffffff;
  --bg-gray: #f9f9f9;
  --border-color: #e0e0e0;
}

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

html, body {
  height: 100%;
  font-family: 'Open Sans', 'Lato', sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-light);
}

body {
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

h1, h2, h3 {
  font-family: 'Montserrat', 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  font-weight: 800;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  color: var(--accent-dark-blue);
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: var(--accent-terracotta);
}

p {
  line-height: 1.6;
  margin-bottom: 1rem;
  font-size: 1rem;
}

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

.navbar-brand {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent-dark-blue) !important;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 1px;
}

.navbar-brand:hover {
  color: var(--accent-terracotta) !important;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link {
  color: var(--text-dark) !important;
  margin-left: 2rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--accent-terracotta) !important;
}

section {
  padding: 5rem 0;
}

section:nth-child(even) {
  background-color: var(--bg-gray);
}

.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, rgba(127, 255, 212, 0.15) 0%, rgba(0, 95, 96, 0.1) 100%);
  background-size: cover;
  background-position: center;
  margin-top: 70px;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('images/hero-skin.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.4;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 2rem;
}

.hero-content h1 {
  color: var(--accent-dark-blue);
  font-size: 4rem;
  margin-bottom: 1.5rem;
  text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.8);
}

.hero-content p {
  font-size: 1.3rem;
  color: var(--accent-dark-blue);
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}

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

.section-title h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 1rem;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-terracotta), var(--primary));
  border-radius: 2px;
}

.two-col-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
}

.two-col-layout.reverse {
  direction: rtl;
}

.two-col-layout.reverse > * {
  direction: ltr;
}

.two-col-text h3 {
  margin-bottom: 1rem;
}

.two-col-text ul {
  list-style: none;
  margin-left: 0;
}

.two-col-text li {
  padding-left: 2rem;
  position: relative;
  margin-bottom: 0.8rem;
  line-height: 1.6;
}

.two-col-text li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-terracotta);
  font-weight: bold;
  font-size: 1.2rem;
}

.two-col-img img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 95, 96, 0.15);
  object-fit: cover;
}

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

.card {
  background-color: var(--bg-light);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-left: 4px solid var(--accent-terracotta);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--accent-dark-blue);
}

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

.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.step {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: 12px;
  background-color: var(--bg-light);
  transition: all 0.3s ease;
}

.step:hover {
  background-color: #f0fffe;
  transform: translateY(-5px);
}

.step-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1rem;
}

.step h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  color: var(--accent-dark-blue);
  margin-bottom: 1rem;
}

.step p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--accent-terracotta), #d45a3f);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  letter-spacing: 0.5px;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(226, 114, 91, 0.3);
  color: var(--text-light);
  text-decoration: none;
}

.disclaimer-box {
  background-color: #f0f9ff;
  border-left: 4px solid var(--primary);
  padding: 2rem;
  border-radius: 8px;
  margin: 3rem 0;
  font-size: 0.95rem;
  line-height: 1.8;
}

footer {
  background-color: var(--accent-dark-blue);
  color: var(--text-light);
  padding: 3rem 0 1rem;
  margin-top: auto;
}

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

.footer-section h5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

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

.footer-section li {
  margin-bottom: 0.8rem;
}

.footer-section a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--bg-light);
  border-top: 1px solid var(--border-color);
  padding: 1.5rem;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 999;
  max-height: 300px;
  overflow-y: auto;
}

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

.cookie-text {
  flex: 1;
  font-size: 0.9rem;
  line-height: 1.6;
}

.cookie-text a {
  color: var(--accent-terracotta);
  text-decoration: none;
  font-weight: 600;
}

.cookie-text a:hover {
  text-decoration: underline;
}

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

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

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

.cookie-accept:hover {
  background-color: #d45a3f;
  transform: translateY(-2px);
}

.cookie-reject {
  background-color: var(--text-light);
  color: var(--text-dark);
  border: 1px solid var(--border-color);
}

.cookie-reject:hover {
  background-color: var(--bg-gray);
}

.cookie-learn {
  background-color: var(--primary);
  color: var(--text-dark);
}

.cookie-learn:hover {
  background-color: #5ff0db;
  transform: translateY(-2px);
}

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

.faq-question {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background-color: var(--bg-gray);
  border-radius: 8px;
  font-weight: 600;
  color: var(--accent-dark-blue);
  transition: all 0.3s ease;
  user-select: none;
}

.faq-question:hover {
  background-color: #f0fffe;
  color: var(--accent-terracotta);
}

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

.faq-answer {
  display: none;
  padding: 1.5rem 1rem;
  background-color: var(--bg-light);
  border-left: 4px solid var(--primary);
  margin-top: 0.5rem;
  line-height: 1.8;
}

.faq-answer.show {
  display: block;
  animation: slideDown 0.3s ease;
}

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

.table-responsive {
  overflow-x: auto;
  margin: 2rem 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--bg-light);
  border-radius: 8px;
  overflow: hidden;
}

thead {
  background-color: var(--accent-dark-blue);
  color: var(--text-light);
}

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

td {
  padding: 1rem 1.2rem;
  border-bottom: 1px solid var(--border-color);
}

tbody tr:hover {
  background-color: #f0fffe;
}

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

  h2 {
    font-size: 1.8rem;
  }

  h3 {
    font-size: 1.3rem;
  }

  section {
    padding: 3rem 1.5rem;
  }

  .hero-section {
    height: auto;
    min-height: 60vh;
    padding: 2rem 1rem;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content p {
    font-size: 1.1rem;
  }

  .two-col-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .two-col-layout.reverse {
    direction: ltr;
  }

  .cookie-content {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }

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

  .cookie-btn {
    width: 100%;
  }

  .navbar-nav .nav-link {
    margin-left: 0;
    padding: 0.5rem 0;
  }

  .faq-question {
    padding: 0.8rem;
    font-size: 0.95rem;
  }
}

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

  h2 {
    font-size: 1.4rem;
  }

  section {
    padding: 2rem 1rem;
  }

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

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

  .hero-content h1 {
    font-size: 1.8rem;
  }
}
