:root {
  --primary-color: #456A5B;
  --gold-accent: #C9A961;
  --pearl-bg: #FDFDFB;
  --card-bg: #FFFFFF;
  --text-dark: #2C2C2C;
  --text-gray: #5A5A5A;
  --border-light: rgba(69, 106, 91, 0.08);
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: var(--pearl-bg);
  color: var(--text-dark);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

h1, h2, h3 {
  letter-spacing: -0.02em;
  font-weight: 600;
  color: var(--primary-color);
}

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

h2 {
  font-size: 2rem;
  line-height: 1.3;
  margin-bottom: 1.25rem;
}

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

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

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(253, 253, 251, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-light);
  z-index: 1000;
  padding: 1rem 0;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
}

.logo:hover {
  color: var(--gold-accent);
}

.logo img {
  width: 32px;
  height: 32px;
  margin-right: 0.75rem;
  border-radius: 8px;
}

.nav-menu {
  display: none;
}

.nav-menu.active {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--card-bg);
  padding: 1rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.nav-menu a {
  padding: 0.75rem 1rem;
  text-decoration: none;
  color: var(--text-gray);
  transition: all 0.3s ease;
  font-size: 0.95rem;
  border-radius: 8px;
}

.nav-menu a:hover {
  color: var(--primary-color);
  background: rgba(69, 106, 91, 0.05);
  transform: translateX(4px);
}

.menu-toggle {
  display: block;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary-color);
  cursor: pointer;
}

.main-content {
  margin-top: 80px;
}

section {
  padding: 5rem 0;
}

.card {
  background: var(--card-bg);
  border-radius: 22px;
  padding: 3rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 16px rgba(69, 106, 91, 0.04);
  transition: all 0.4s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(69, 106, 91, 0.08);
}

.hero {
  background: linear-gradient(135deg, rgba(253, 253, 251, 0.95), rgba(255, 255, 255, 0.9));
  padding: 6rem 0 5rem;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.hero-image {
  max-width: 600px;
  width: 100%;
  height: auto;
  border-radius: 22px;
  margin: 2rem auto;
  display: block;
}

.content-with-image {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 3rem;
}

.content-with-image img {
  max-width: 100%;
  height: auto;
  border-radius: 22px;
  box-shadow: 0 4px 20px rgba(69, 106, 91, 0.08);
}

.content-with-image.reverse {
  direction: ltr;
}

.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--primary-color);
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn:hover {
  background: var(--gold-accent);
  transform: scale(1.05);
  color: white;
}

.list-styled {
  list-style: none;
  padding: 0;
}

.list-styled li {
  padding: 1rem 0;
  padding-left: 2rem;
  position: relative;
  color: var(--text-gray);
}

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

.faq-item {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 16px rgba(69, 106, 91, 0.06);
}

.faq-item h3 {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
  color: var(--primary-color);
}

.disclaimer-box {
  background: rgba(69, 106, 91, 0.04);
  border-left: 4px solid var(--primary-color);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--text-gray);
  font-style: italic;
}

.contact-form {
  background: var(--card-bg);
  border-radius: 22px;
  padding: 3rem;
  box-shadow: 0 4px 20px rgba(69, 106, 91, 0.08);
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: inherit;
}

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

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

.footer h3 {
  color: white;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.footer p,
.footer a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  line-height: 1.8;
}

.footer a {
  text-decoration: none;
  transition: color 0.3s ease;
  cursor: pointer;
}

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

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 3rem;
  padding-top: 2rem;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--card-bg);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  z-index: 9999;
  display: none;
}

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

.cookie-banner p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

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

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 10000;
  overflow-y: auto;
  padding: 2rem 1rem;
}

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

.modal-content {
  background: var(--card-bg);
  border-radius: 22px;
  padding: 3rem;
  max-width: 700px;
  width: 100%;
  position: relative;
  max-height: 80vh;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-gray);
  line-height: 1;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: rgba(69, 106, 91, 0.1);
  color: var(--primary-color);
}

.educational-note {
  background: rgba(201, 169, 97, 0.08);
  border: 1px solid rgba(201, 169, 97, 0.2);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  font-weight: 500;
  color: var(--text-dark);
  margin: 3rem 0;
}

@media (min-width: 768px) {
  .nav-menu {
    display: flex !important;
    flex-direction: row;
    position: static;
    background: none;
    padding: 0;
    box-shadow: none;
    gap: 0.5rem;
  }

  .menu-toggle {
    display: none;
  }

  .nav-menu a {
    padding: 0.5rem 1rem;
  }

  .nav-menu a:hover {
    transform: translateY(-2px);
  }

  .content-with-image {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .content-with-image.reverse {
    direction: rtl;
  }

  .content-with-image.reverse > * {
    direction: ltr;
  }

  h1 {
    font-size: 3.5rem;
  }

  section {
    padding: 6rem 0;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 1140px;
  }

  .card {
    padding: 4rem;
  }
}
