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

html {
  scroll-behavior: smooth;
}

body {
  background-color: #F8F8F8;
  color: #3A4750;
  font-family: 'Open Sans', sans-serif;
  line-height: 1.6;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Georgia', serif;
  color: #3A4750;
  font-weight: bold;
  margin-bottom: 20px;
}

h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 30px;
  text-align: left;
  font-weight: 700;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 25px;
  margin-top: 40px;
}

h3 {
  font-size: 1.5rem;
  margin-top: 30px;
  margin-bottom: 15px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
}

p {
  margin-bottom: 20px;
  line-height: 1.8;
  font-size: 1rem;
}

header {
  background-color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #3A4750;
}

.logo img {
  width: 40px;
  height: 40px;
  object-fit: cover;
}

.logo-text {
  font-size: 1.3rem;
  font-weight: 700;
  color: #3A4750;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

nav a {
  text-decoration: none;
  color: #3A4750;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s ease-out;
  padding-bottom: 5px;
  border-bottom: 2px solid transparent;
}

nav a:hover {
  color: #9B59B6;
  border-bottom-color: #9B59B6;
}

nav a.active {
  color: #9B59B6;
  border-bottom-color: #9B59B6;
}

main {
  margin-top: 80px;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 40px;
}

.hero-section {
  padding: 100px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content h1 {
  margin-bottom: 30px;
}

.hero-content p {
  font-size: 1.1rem;
  color: #3A4750;
  margin-bottom: 30px;
}

.hero-image {
  width: 100%;
  height: auto;
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.cta-button {
  display: inline-block;
  padding: 14px 32px;
  background-color: #3A4750;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease-out;
  border: 2px solid #3A4750;
  font-size: 0.95rem;
}

.cta-button:hover {
  background-color: #9B59B6;
  border-color: #9B59B6;
  transform: translateY(2px);
  box-shadow: 0 4px 12px rgba(155, 89, 182, 0.2);
}

.cta-secondary {
  background-color: transparent;
  color: #3A4750;
  border: 2px solid #3A4750;
}

.cta-secondary:hover {
  background-color: #9B59B6;
  color: white;
  border-color: #9B59B6;
}

.section {
  padding: 100px 0;
  border-bottom: 1px solid #E0E0E0;
}

.section:last-of-type {
  border-bottom: none;
}

.two-column-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

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

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

.content-block {
  padding: 40px 0;
}

.content-block h2 {
  margin-top: 0;
}

.image-block {
  overflow: hidden;
  border-radius: 4px;
}

.image-block img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

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

.card {
  background-color: white;
  padding: 30px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease-out;
}

.card:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 15px;
}

.card p {
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.disclaimer-section {
  background-color: #F5F5F5;
  padding: 40px;
  border-left: 4px solid #9B59B6;
  margin: 60px 0;
  border-radius: 4px;
}

.disclaimer-section h3 {
  margin-top: 0;
  color: #9B59B6;
}

.disclaimer-section p {
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.medical-notice {
  background-color: #F0F0F0;
  padding: 20px;
  margin: 30px 0;
  border-radius: 4px;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 600;
  color: #3A4750;
  border: 1px solid #D0D0D0;
}

footer {
  background-color: #3A4750;
  color: white;
  padding: 60px 40px;
  margin-top: 80px;
}

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

.footer-section h4 {
  font-size: 1rem;
  margin-bottom: 20px;
  color: white;
  font-family: 'Open Sans', sans-serif;
}

.footer-section p {
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: #E8E8E8;
}

.footer-section a {
  color: #E8E8E8;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease-out;
}

.footer-section a:hover {
  color: #2ecc71;
}

.footer-bottom {
  border-top: 1px solid #555;
  padding-top: 20px;
  text-align: center;
  font-size: 0.85rem;
  color: #C0C0C0;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #3A4750;
  color: white;
  padding: 20px 40px;
  z-index: 999;
  display: none;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
}

.cookie-banner.active {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.cookie-banner-content {
  flex: 1;
  font-size: 0.95rem;
}

.cookie-banner-buttons {
  display: flex;
  gap: 15px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease-out;
  font-size: 0.9rem;
}

.cookie-btn.accept {
  background-color: #2ecc71;
  color: white;
}

.cookie-btn.accept:hover {
  background-color: #27ae60;
}

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

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

.cookie-btn.learn-more {
  background-color: #9B59B6;
  color: white;
}

.cookie-btn.learn-more:hover {
  background-color: #8E44AD;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #3A4750;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #D0D0D0;
  border-radius: 4px;
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s ease-out;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #9B59B6;
  box-shadow: 0 0 0 3px rgba(155, 89, 182, 0.1);
}

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

.form-container {
  max-width: 600px;
  margin: 40px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info {
  background-color: white;
  padding: 30px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.contact-info h3 {
  margin-top: 0;
}

.info-item {
  margin-bottom: 20px;
}

.info-item strong {
  display: block;
  color: #9B59B6;
  margin-bottom: 5px;
}

@media (max-width: 768px) {
  .header-container {
    padding: 15px 20px;
  }

  nav ul {
    gap: 15px;
  }

  nav a {
    font-size: 0.85rem;
  }

  main {
    padding: 0 20px;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .hero-section,
  .two-column-layout,
  .card-grid,
  .footer-container,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-section {
    padding: 60px 0;
  }

  .section {
    padding: 60px 0;
  }

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

  .cookie-banner.active {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-banner-buttons {
    width: 100%;
    flex-wrap: wrap;
  }

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

@media (max-width: 480px) {
  .header-container {
    flex-direction: column;
    gap: 15px;
  }

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

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.2rem;
  }

  main {
    padding: 0 15px;
  }

  footer {
    padding: 40px 15px;
  }

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