:root {
  --primary-cyan: #00BCD4;
  --charcoal: #424242;
  --silver: #E0E0E0;
  --pure-white: #FFFFFF;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1.16rem;
  line-height: 1.82;
  color: var(--charcoal);
  background-color: var(--pure-white);
  overflow-x: hidden;
}

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

h1 {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 4.1rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 30px;
  text-align: center;
}

h2 {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 3.1rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 40px;
}

h3 {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 2.3rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 20px;
}

p {
  margin-bottom: 20px;
  text-align: justify;
}

.highlight {
  color: var(--primary-cyan);
  font-weight: 700;
  font-size: 1.2rem;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--pure-white);
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.logo {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-cyan);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 40px;
  height: 40px;
}

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

nav a {
  text-decoration: none;
  color: var(--charcoal);
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

nav a:hover {
  color: var(--primary-cyan);
}

main {
  padding-top: 80px;
}

section {
  padding: 170px 0;
  border-bottom: 1px solid var(--silver);
}

section:last-child {
  border-bottom: none;
}

.full-bleed {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background-color: var(--pure-white);
}

.section-content {
  max-width: 1420px;
  margin: 0 auto;
  padding: 0 30px;
}

.hero {
  background-color: var(--pure-white);
  padding: 200px 0;
  text-align: center;
}

.hero-image {
  max-width: 100%;
  width: 600px;
  height: auto;
  margin: 0 auto 50px;
  display: block;
}

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

.two-column img {
  width: 100%;
  height: auto;
  display: block;
}

.two-column:nth-child(even) {
  direction: rtl;
}

.two-column:nth-child(even) > div {
  direction: ltr;
}

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

.card {
  background-color: var(--pure-white);
  border: 2px solid var(--silver);
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.card:hover {
  border-color: var(--primary-cyan);
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  margin-bottom: 20px;
  display: block;
}

.card h3 {
  font-size: 1.6rem;
  margin-bottom: 15px;
}

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

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--silver);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary-cyan);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.faq-answer {
  display: none;
  padding-top: 15px;
  line-height: 1.82;
}

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

.cta-section {
  text-align: center;
  padding: 100px 0;
  background-color: var(--pure-white);
}

.cta-button {
  display: inline-block;
  background-color: var(--primary-cyan);
  color: var(--pure-white);
  padding: 15px 40px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  border: 2px solid var(--primary-cyan);
  border-radius: 0;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

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

footer {
  background-color: var(--charcoal);
  color: var(--silver);
  padding: 60px 0;
  margin-top: 170px;
}

.footer-content {
  max-width: 1420px;
  margin: 0 auto;
  padding: 0 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-section h4 {
  color: var(--pure-white);
  font-size: 1.1rem;
  margin-bottom: 20px;
  font-family: 'Roboto Condensed', sans-serif;
}

.footer-section p, .footer-section a {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--silver);
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
}

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

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(224, 224, 224, 0.3);
  font-size: 0.9rem;
}

.footer-disclaimer {
  font-size: 0.85rem;
  font-style: italic;
  margin-top: 20px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--charcoal);
  color: var(--pure-white);
  padding: 20px 30px;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  animation: slideUp 0.3s ease;
}

.cookie-banner.hidden {
  display: none;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

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

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

.cookie-button {
  padding: 10px 20px;
  border: 2px solid var(--primary-cyan);
  background-color: transparent;
  color: var(--primary-cyan);
  cursor: pointer;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.cookie-button.accept {
  background-color: var(--primary-cyan);
  color: var(--pure-white);
}

.cookie-button:hover {
  opacity: 0.8;
}

.disclaimer-box {
  background-color: var(--silver);
  border-left: 4px solid var(--primary-cyan);
  padding: 20px;
  margin: 40px 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

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

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

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--charcoal);
}

input[type="email"],
textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid var(--silver);
  border-radius: 0;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

input[type="email"]:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary-cyan);
}

textarea {
  min-height: 200px;
  resize: vertical;
}

.form-submit {
  width: 100%;
  padding: 15px;
  background-color: var(--primary-cyan);
  color: var(--pure-white);
  border: 2px solid var(--primary-cyan);
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-submit:hover {
  background-color: transparent;
  color: var(--primary-cyan);
}

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

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  nav ul {
    gap: 20px;
  }

  nav a {
    font-size: 0.9rem;
  }

  .two-column {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .two-column:nth-child(even) {
    direction: ltr;
  }

  .cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero-image {
    width: 100%;
    max-width: 400px;
  }

  section {
    padding: 80px 0;
  }

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

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: flex-end;
  }

  body {
    font-size: 1rem;
  }

  .cta-button {
    padding: 12px 30px;
    font-size: 1rem;
  }
}

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

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  nav ul {
    gap: 10px;
    flex-wrap: wrap;
  }

  nav a {
    font-size: 0.8rem;
  }

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

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

  .cookie-button {
    padding: 8px 12px;
    font-size: 0.8rem;
  }

  section {
    padding: 50px 0;
  }
}
