:root {
  --primary-bg: #F0F4F8;
  --accent-blue: #3498DB;
  --accent-green: #2ECC71;
  --accent-orange: #E67E22;
  --text-dark: #333333;
  --text-light: #666666;
  --white: #FFFFFF;
  --border-light: #EBEBEB;
}

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

html, body {
  font-family: 'Open Sans', 'Roboto', sans-serif;
  background-color: var(--primary-bg);
  color: var(--text-dark);
  line-height: 1.6;
}

body {
  padding-top: 70px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', 'Graphik', sans-serif;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.3;
}

h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  margin-top: 2rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

p {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.8;
}

a {
  color: var(--accent-blue);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--accent-orange);
  text-decoration: underline;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-wide {
  max-width: 100%;
  width: 100%;
  padding: 0;
}

header.sticky-top {
  background-color: var(--white);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav.navbar {
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  text-decoration: none;
}

.navbar-brand:hover {
  color: var(--accent-blue);
}

.nav-link {
  color: var(--text-dark);
  font-weight: 500;
  margin-left: 2rem;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--accent-blue);
}

.nav-link.active {
  color: var(--accent-blue);
  border-bottom: 2px solid var(--accent-blue);
  padding-bottom: 0.5rem;
}

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

footer h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 1rem;
}

footer a {
  color: var(--accent-blue);
}

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

footer p {
  color: #CCCCCC;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.footer-section {
  margin-bottom: 2rem;
}

.footer-bottom {
  border-top: 1px solid #555555;
  padding-top: 2rem;
  margin-top: 2rem;
  text-align: center;
  color: #999999;
  font-size: 0.85rem;
}

.hero-block {
  background-color: var(--white);
  padding: 5rem 0;
  margin-bottom: 3rem;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-text h1 {
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.hero-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.hero-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.section {
  padding: 4rem 0;
  background-color: var(--white);
  margin-bottom: 2rem;
  border-radius: 8px;
}

.section-alt {
  background-color: #FAFBFC;
}

.section h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--text-dark);
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.two-column-reverse {
  direction: rtl;
}

.two-column-reverse > * {
  direction: ltr;
}

.section-image {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

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

.card {
  background-color: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.card:hover {
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}

.card h3 {
  color: var(--accent-blue);
  margin-bottom: 1rem;
}

.card p {
  font-size: 0.95rem;
  color: var(--text-light);
}

.table-responsive {
  margin: 2rem 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--white);
}

.table thead {
  background-color: var(--accent-blue);
  color: var(--white);
}

.table th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
}

.table td {
  padding: 1rem;
  border-bottom: 1px solid var(--border-light);
}

.table tbody tr:hover {
  background-color: #F5F7FA;
}

.cta-button {
  display: inline-block;
  background-color: var(--accent-blue);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.cta-button:hover {
  background-color: var(--accent-orange);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(230, 126, 34, 0.3);
  text-decoration: none;
  color: var(--white);
}

.cta-secondary {
  background-color: transparent;
  color: var(--accent-blue);
  border: 2px solid var(--accent-blue);
}

.cta-secondary:hover {
  background-color: var(--accent-blue);
  color: var(--white);
}

.disclaimer-box {
  background-color: #FFF3CD;
  border: 1px solid #FEC53F;
  border-radius: 8px;
  padding: 1.5rem;
  margin: 2rem 0;
  font-size: 0.95rem;
  color: #856404;
  line-height: 1.6;
}

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

.disclaimer-box h4 {
  color: #665503;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.restriction-box {
  background-color: #E8F4F8;
  border: 1px solid #B8E0E8;
  border-radius: 8px;
  padding: 1.5rem;
  margin: 2rem 0;
  font-size: 0.95rem;
  color: #0C5460;
  line-height: 1.6;
}

.restriction-box h4 {
  color: #0C5460;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text-dark);
  background-color: var(--white);
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

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

.form-group button {
  background-color: var(--accent-blue);
  color: var(--white);
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-group button:hover {
  background-color: var(--accent-orange);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(230, 126, 34, 0.3);
}

.faq-item {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-light);
}

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

.faq-question {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent-blue);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.faq-answer {
  color: var(--text-light);
  line-height: 1.8;
  font-size: 0.95rem;
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--text-dark);
  color: var(--white);
  padding: 1.5rem;
  z-index: 2000;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

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

.cookie-content {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-message {
  flex: 1;
  min-width: 250px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.cookie-message a {
  color: var(--accent-blue);
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  min-width: 250px;
  justify-content: flex-end;
}

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

.cookie-accept {
  background-color: var(--accent-green);
  color: var(--white);
}

.cookie-accept:hover {
  background-color: #27AE60;
}

.cookie-decline {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.cookie-decline:hover {
  background-color: var(--white);
  color: var(--text-dark);
}

.thank-you-container {
  text-align: center;
  padding: 4rem 0;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.thank-you-container h1 {
  color: var(--accent-green);
  margin-bottom: 1rem;
}

.thank-you-container p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.educational-note {
  background-color: #E7F3FF;
  border: 1px solid #90CAF9;
  border-radius: 8px;
  padding: 1.5rem;
  margin: 2rem 0;
  font-size: 0.95rem;
  color: #0D47A1;
  text-align: center;
  font-weight: 500;
}

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

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  body {
    padding-top: 60px;
  }

  .hero-content,
  .two-column {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-image,
  .section-image {
    height: 280px;
  }

  .nav-link {
    margin-left: 1rem;
    font-size: 0.9rem;
  }

  .navbar-toggler {
    border: none;
  }

  .navbar-toggler:focus {
    outline: none;
    box-shadow: none;
  }

  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .card-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 2rem;
  }

  .table {
    font-size: 0.85rem;
  }

  .table th,
  .table td {
    padding: 0.75rem;
  }
}

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

  h2 {
    font-size: 1.2rem;
  }

  .container {
    padding: 0 15px;
  }

  .navbar-brand {
    font-size: 1.2rem;
  }

  .nav-link {
    margin-left: 0.5rem;
    font-size: 0.85rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  p {
    font-size: 0.95rem;
  }

  .section {
    padding: 1.5rem;
    margin-bottom: 1rem;
  }

  .footer-section {
    margin-bottom: 1.5rem;
  }

  .cookie-consent {
    padding: 1rem;
  }

  .cookie-message {
    font-size: 0.85rem;
  }

  .cookie-button {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }
}
