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

html {
  font-size: 16px;
}

body {
  font-family: system-ui, "Segoe UI", Arial, sans-serif;
  background-color: #fafafa;
  color: #333;
  line-height: 1.68;
}

h1 {
  font-size: 2.72rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #222;
}

h2 {
  font-size: 2.02rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: #222;
  margin-top: 2rem;
}

h3 {
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #333;
}

p {
  font-size: 1.08rem;
  margin-bottom: 1.2rem;
  color: #444;
}

header {
  position: sticky;
  top: 0;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  z-index: 1000;
}

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

.logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: #5F9EA0;
  text-decoration: none;
}

nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

nav a {
  color: #555;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.26s ease;
}

nav a:hover {
  color: #5F9EA0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero {
  background: linear-gradient(135deg, #f5f5f5 0%, #fff 100%);
  padding: 4rem 2rem;
  text-align: center;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.hero img {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  margin-bottom: 2rem;
}

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

.grid-2 img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.grid-2.reverse {
  direction: rtl;
}

.grid-2.reverse > * {
  direction: ltr;
}

.content-section {
  padding: 3rem 2rem;
  background-color: #fff;
  margin-bottom: 2rem;
  border-radius: 4px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.card {
  background-color: #fff;
  padding: 2rem;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: box-shadow 0.26s ease;
}

.card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 1.2rem;
}

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

.cta-link {
  color: #5F9EA0;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.26s ease;
}

.cta-link:hover {
  color: #4a7a7d;
}

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

.link-card {
  background-color: #f0f6f7;
  padding: 2rem;
  border-radius: 6px;
  text-align: center;
  border: 1px solid #d4e7e8;
  transition: all 0.26s ease;
}

.link-card:hover {
  background-color: #e8f2f3;
  border-color: #5F9EA0;
}

.link-card a {
  color: #5F9EA0;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  display: block;
}

.faq {
  background-color: #fff;
  padding: 2rem;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  margin-bottom: 1.5rem;
}

.faq-question {
  font-weight: 600;
  color: #222;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 0;
  border-bottom: 1px solid #e5e5e5;
}

.faq-question:hover {
  color: #5F9EA0;
}

.faq-toggle {
  font-size: 1.4rem;
  transition: transform 0.26s ease;
}

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

.faq-answer {
  display: none;
  padding-top: 1rem;
  color: #555;
}

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

.disclaimer {
  background-color: #f0f6f7;
  border-left: 4px solid #5F9EA0;
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 4px;
  font-size: 0.98rem;
  color: #444;
}

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

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #222;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: system-ui, "Segoe UI", Arial, sans-serif;
  font-size: 1rem;
  transition: border-color 0.26s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #5F9EA0;
  box-shadow: 0 0 0 3px rgba(95, 158, 160, 0.1);
}

.btn {
  background-color: #5F9EA0;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.26s ease;
  font-size: 1rem;
}

.btn:hover {
  background-color: #4a7a7d;
}

footer {
  background-color: #222;
  color: #ddd;
  padding: 3rem 2rem 2rem;
  margin-top: 4rem;
}

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

.footer-section h3 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.footer-section a,
.footer-section p {
  color: #bbb;
  text-decoration: none;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  transition: color 0.26s ease;
}

.footer-section a:hover {
  color: #5F9EA0;
}

.footer-bottom {
  border-top: 1px solid #444;
  padding-top: 1.5rem;
  text-align: center;
  color: #999;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #222;
  color: #ddd;
  padding: 1.5rem 2rem;
  box-shadow: 0 -2px 8px rgba(0,0,0,0.2);
  display: none;
  z-index: 2000;
}

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

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

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

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

.cookie-accept {
  background-color: #5F9EA0;
  color: #fff;
}

.cookie-accept:hover {
  background-color: #4a7a7d;
}

@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 1.5rem;
  }

  nav {
    flex-direction: column;
    gap: 0.8rem;
    width: 100%;
    text-align: center;
  }

  nav a {
    font-size: 0.95rem;
  }

  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.4rem;
  }

  .grid-2 {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

  .container {
    padding: 0 1rem;
  }

  .content-section {
    padding: 1.5rem 1rem;
  }

  .hero {
    padding: 2rem 1rem;
  }

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

  .cookie-buttons {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
  }

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