@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@300;400;500;600&display=swap');

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

body {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: #2c3e50;
  background: #fafafa;
  overflow-x: hidden;
}

.container-custom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
  z-index: 1000;
  transition: all 0.3s linear;
}

.navbar-brand {
  font-size: 24px;
  font-weight: 600;
  color: #455A64;
  text-decoration: none;
  transition: opacity 0.3s linear;
}

.navbar-brand:hover {
  opacity: 0.7;
  color: #455A64;
  text-decoration: none;
}

.navbar-nav .nav-link {
  font-size: 15px;
  color: #546e7a;
  margin-left: 32px;
  transition: color 0.3s linear;
  font-weight: 400;
}

.navbar-nav .nav-link:hover {
  color: #455A64;
}

.hero-section {
  padding: 180px 0 120px;
  background: linear-gradient(rgba(250, 250, 250, 0.7), rgba(250, 250, 250, 0.9)), url('../images/hero-alpine-meadow.jpg') center/cover no-repeat;
  min-height: 600px;
  display: flex;
  align-items: center;
}

h1 {
  font-size: 50px;
  font-weight: 300;
  color: #455A64;
  margin-bottom: 32px;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 40px;
  font-weight: 300;
  color: #455A64;
  margin-bottom: 24px;
  letter-spacing: -0.3px;
}

h3 {
  font-size: 28px;
  font-weight: 400;
  color: #546e7a;
  margin-bottom: 16px;
}

.lead-text {
  font-size: 20px;
  line-height: 1.7;
  color: #546e7a;
  font-weight: 300;
}

.section-content {
  padding: 96px 0;
}

.content-block {
  margin-bottom: 64px;
}

.content-with-image {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 48px;
}

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

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

.content-image {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
}

.text-content p {
  margin-bottom: 20px;
  color: #546e7a;
  line-height: 1.8;
}

.cta-button {
  display: inline-block;
  padding: 14px 40px;
  background: #455A64;
  color: #ffffff;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.3s linear;
  border: none;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
}

.cta-button:hover {
  background: #546e7a;
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(69, 90, 100, 0.2);
}

.disclaimer-box {
  background: #f5f7f8;
  border-left: 3px solid #455A64;
  padding: 32px;
  margin: 48px 0;
  border-radius: 2px;
}

.disclaimer-box h3 {
  font-size: 22px;
  margin-bottom: 16px;
}

.disclaimer-box p {
  font-size: 16px;
  line-height: 1.7;
  color: #546e7a;
}

.faq-section {
  background: #ffffff;
  padding: 48px;
  border-radius: 2px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
}

.faq-item {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid #eceff1;
}

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

.faq-question {
  font-size: 20px;
  font-weight: 500;
  color: #455A64;
  margin-bottom: 12px;
}

.faq-answer {
  font-size: 16px;
  color: #546e7a;
  line-height: 1.7;
}

.contact-section {
  background: #f5f7f8;
  padding: 96px 0;
}

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

.form-group label {
  display: block;
  font-size: 15px;
  color: #455A64;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #cfd8dc;
  border-radius: 2px;
  font-size: 16px;
  transition: border 0.3s linear;
  font-family: 'IBM Plex Sans', sans-serif;
}

.form-control:focus {
  outline: none;
  border-color: #455A64;
}

footer {
  background: #263238;
  color: #b0bec5;
  padding: 64px 0 32px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 48px;
}

.footer-section h4 {
  color: #eceff1;
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 500;
}

.footer-section p,
.footer-section a {
  font-size: 15px;
  line-height: 1.8;
  color: #b0bec5;
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid #37474f;
  font-size: 14px;
  color: #90a4ae;
}

.policy-link {
  color: #b0bec5;
  text-decoration: underline;
  cursor: pointer;
  transition: color 0.3s linear;
}

.policy-link:hover {
  color: #eceff1;
}

.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.active {
  display: flex;
}

.modal-content {
  background: #ffffff;
  max-width: 700px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  border-radius: 2px;
  padding: 48px;
  position: relative;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 32px;
  color: #90a4ae;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
  transition: color 0.3s linear;
}

.modal-close:hover {
  color: #455A64;
}

.modal-content h2 {
  margin-bottom: 24px;
  font-size: 32px;
}

.modal-content h3 {
  margin-top: 32px;
  margin-bottom: 16px;
  font-size: 24px;
}

.modal-content p,
.modal-content ul {
  margin-bottom: 16px;
  color: #546e7a;
  line-height: 1.8;
}

.modal-content ul {
  padding-left: 24px;
}

.modal-content li {
  margin-bottom: 8px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #263238;
  color: #eceff1;
  padding: 24px;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.15);
  z-index: 1500;
  display: none;
}

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

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.cookie-text {
  font-size: 15px;
  line-height: 1.6;
}

.cookie-accept {
  padding: 10px 32px;
  background: #455A64;
  color: #ffffff;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.3s linear;
  font-size: 15px;
}

.cookie-accept:hover {
  background: #546e7a;
}

.educational-notice {
  background: #fff9e6;
  border: 1px solid #ffd54f;
  padding: 24px;
  border-radius: 2px;
  margin: 48px 0;
  text-align: center;
}

.educational-notice p {
  font-size: 15px;
  color: #6d4c41;
  margin: 0;
  font-weight: 500;
}

@media (max-width: 768px) {
  .container-custom {
    padding: 0 24px;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 32px;
  }

  .hero-section {
    padding: 140px 0 80px;
  }

  .section-content {
    padding: 64px 0;
  }

  .content-with-image {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

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

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

  .navbar-nav {
    margin-top: 16px;
  }

  .navbar-nav .nav-link {
    margin-left: 0;
    margin-bottom: 8px;
  }

  .modal-content {
    padding: 32px 24px;
  }
}

@media (max-width: 576px) {
  body {
    font-size: 16px;
  }

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 28px;
  }

  .lead-text {
    font-size: 18px;
  }
}
