@import url('https://fonts.googleapis.com/css2?family=Anton&family=Montserrat:wght@400;700&display=swap');

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #1C2526;
  color: #E8E8E8;
  line-height: 1.75;
  font-size: 18px;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #2F2F2F;
  z-index: 1000;
  transition: background-color 0.3s ease;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
}

header.scrolled {
  background-color: #A52A2A;
}

.header-container {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 7vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  font-family: 'Anton', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #B0C4DE;
  text-decoration: none;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.logo:hover {
  color: #A52A2A;
}

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

nav a {
  color: #E8E8E8;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #B0C4DE;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #B0C4DE;
  font-size: 24px;
  cursor: pointer;
}

main {
  margin-top: 80px;
  padding: 0;
}

section {
  width: 100%;
  padding: 140px 7vw;
  max-width: 100%;
  opacity: 0;
  animation: slideInFade 0.45s ease forwards;
}

@keyframes slideInFade {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

section:nth-child(1) { animation-delay: 0s; }
section:nth-child(2) { animation-delay: 0.1s; }
section:nth-child(3) { animation-delay: 0.2s; }
section:nth-child(n+4) { animation-delay: 0s; }

.section-container {
  max-width: 1480px;
  margin: 0 auto;
}

h1, h2, h3 {
  font-family: 'Anton', sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 30px;
}

h1 {
  font-size: 52px;
  color: #B0C4DE;
  line-height: 1.2;
}

h2 {
  font-size: 40px;
  color: #B0C4DE;
  margin-bottom: 40px;
}

h3 {
  font-size: 28px;
  color: #A52A2A;
  margin-bottom: 20px;
}

p {
  margin-bottom: 20px;
  color: #E8E8E8;
}

.hero-section {
  background: linear-gradient(135deg, #2F2F2F 0%, #1C2526 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 80px);
  padding: 0 7vw;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 1480px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 80px;
  width: 100%;
}

.hero-text {
  flex: 1;
  z-index: 2;
}

.hero-image {
  flex: 1;
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border: 3px solid #B0C4DE;
  box-shadow: 0 20px 60px rgba(176, 196, 222, 0.2);
}

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

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 50px;
}

.card {
  background-color: #2F2F2F;
  padding: 40px;
  border: 2px solid #B0C4DE;
  border-radius: 8px;
  transition: all 0.35s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.card:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 50px rgba(176, 196, 222, 0.3);
  border-color: #A52A2A;
}

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

.card p {
  font-size: 16px;
  color: #D3D3D3;
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 20px;
  border: 1px solid #B0C4DE;
}

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

.two-column img {
  width: 100%;
  height: auto;
  border: 3px solid #B0C4DE;
  box-shadow: 0 15px 40px rgba(176, 196, 222, 0.15);
}

.list-items {
  list-style: none;
  margin: 30px 0;
}

.list-items li {
  margin-bottom: 20px;
  padding-left: 30px;
  position: relative;
  font-size: 18px;
  color: #E8E8E8;
}

.list-items li:before {
  content: "▪";
  position: absolute;
  left: 0;
  color: #A52A2A;
  font-weight: bold;
}

.cta-button {
  display: inline-block;
  background-color: #A52A2A;
  color: #E8E8E8;
  padding: 16px 40px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  border: 2px solid #A52A2A;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  margin-top: 30px;
}

.cta-button:hover {
  background-color: transparent;
  color: #A52A2A;
  box-shadow: 0 10px 25px rgba(165, 42, 42, 0.3);
}

footer {
  background-color: #0F1113;
  color: #B0C4DE;
  padding: 60px 7vw;
  border-top: 2px solid #2F2F2F;
}

.footer-container {
  max-width: 1480px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
}

.footer-section h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #A52A2A;
  font-family: 'Anton', sans-serif;
}

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

.footer-section ul li {
  margin-bottom: 12px;
}

.footer-section a {
  color: #B0C4DE;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 16px;
}

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

.footer-disclaimer {
  grid-column: 1 / -1;
  text-align: center;
  border-top: 1px solid #2F2F2F;
  padding-top: 40px;
  margin-top: 40px;
  font-size: 14px;
  color: #999;
}

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

.form-group label {
  display: block;
  margin-bottom: 10px;
  font-weight: 700;
  color: #B0C4DE;
  font-size: 16px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  background-color: #2F2F2F;
  border: 2px solid #B0C4DE;
  color: #E8E8E8;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  border-radius: 4px;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #A52A2A;
  box-shadow: 0 0 10px rgba(165, 42, 42, 0.3);
}

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

.disclaimer-box {
  background-color: #2F2F2F;
  border-left: 4px solid #A52A2A;
  padding: 20px;
  margin: 30px 0;
  font-size: 16px;
  color: #D3D3D3;
}

.disclaimer-box strong {
  color: #A52A2A;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2F2F2F;
  border-top: 2px solid #B0C4DE;
  padding: 25px 7vw;
  z-index: 999;
  display: none;
  box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.5);
}

.cookie-banner.show {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  color: #E8E8E8;
  font-size: 16px;
}

.cookie-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 10px 25px;
  border: none;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-btn-accept {
  background-color: #A52A2A;
  color: #E8E8E8;
}

.cookie-btn-accept:hover {
  background-color: #B0C4DE;
  color: #1C2526;
}

.cookie-btn-reject {
  background-color: transparent;
  color: #B0C4DE;
  border: 2px solid #B0C4DE;
}

.cookie-btn-reject:hover {
  background-color: #B0C4DE;
  color: #1C2526;
}

.cookie-btn-learn {
  background-color: transparent;
  color: #B0C4DE;
  border: 2px solid #B0C4DE;
}

.cookie-btn-learn:hover {
  background-color: #B0C4DE;
  color: #1C2526;
}

.thank-you-container {
  text-align: center;
  min-height: calc(100vh - 160px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.thank-you-container h1 {
  font-size: 48px;
  margin-bottom: 30px;
}

.thank-you-container p {
  font-size: 20px;
  margin-bottom: 40px;
}

@media (max-width: 992px) {
  nav ul {
    gap: 20px;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 22px;
  }

  .hero-content {
    flex-direction: column;
    gap: 40px;
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  section {
    padding: 80px 7vw;
  }

  .header-container {
    height: 70px;
  }

  main {
    margin-top: 70px;
  }

  .hero-section {
    min-height: calc(100vh - 70px);
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  nav {
    position: fixed;
    right: -100%;
    top: 70px;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: #2F2F2F;
    transition: right 0.3s ease;
    z-index: 999;
  }

  nav.active {
    right: 0;
  }

  nav ul {
    flex-direction: column;
    gap: 0;
    padding: 30px 7vw;
  }

  nav a {
    display: block;
    padding: 15px 0;
    border-bottom: 1px solid #1C2526;
  }

  .header-container {
    height: 70px;
  }

  .logo {
    font-size: 18px;
  }

  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 18px;
  }

  .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }

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

  section {
    padding: 60px 20px;
  }

  .header-container {
    padding: 0 20px;
  }

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

  footer {
    padding: 40px 20px;
  }

  .cookie-banner.show {
    flex-direction: column;
    gap: 15px;
  }

  .cookie-text {
    font-size: 14px;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: space-between;
  }

  .cookie-btn {
    padding: 10px 20px;
    font-size: 14px;
    flex: 1;
    text-align: center;
  }
}

.educational-notice {
  background-color: #0F1113;
  border: 2px solid #B0C4DE;
  padding: 30px;
  margin: 40px 0;
  text-align: center;
  font-family: 'Anton', sans-serif;
  font-size: 18px;
  color: #B0C4DE;
  border-radius: 4px;
}
