:root {
  --primary-color: #A7C7E7;
  --accent-blue: #6495ED;
  --accent-light: #ADD8E6;
  --accent-cyan: #E0FFFF;
  --dark-text: #1a1a1a;
  --light-bg: #f8f9fa;
  --white: #ffffff;
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
}

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

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

header .navbar {
  padding: 1rem 0;
  border-bottom: 3px solid var(--primary-color);
}

header .navbar-brand img {
  height: 50px;
  width: auto;
}

header .nav-link {
  color: var(--dark-text) !important;
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
  transition: color 0.3s ease;
}

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

section {
  padding: 4rem 0;
}

.hero {
  background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('images/hero-banner.jpg') center/cover no-repeat;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 600px;
  width: 100%;
}

.hero h1 {
  font-size: 3rem;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.3rem;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}

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

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

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

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

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

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

.card {
  background-color: var(--light-bg);
  padding: 2rem;
  border-radius: 8px;
  border-left: 4px solid var(--accent-blue);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

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

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

.table-responsive {
  margin-top: 2rem;
  border-radius: 8px;
  overflow: hidden;
}

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

thead {
  background-color: var(--primary-color);
  color: var(--dark-text);
}

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

td {
  padding: 1rem;
  border-bottom: 1px solid #ddd;
}

tbody tr:hover {
  background-color: var(--accent-cyan);
}

.timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline-item {
  margin-bottom: 3rem;
  padding-left: 3rem;
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 12px;
  height: 12px;
  background-color: var(--accent-blue);
  border-radius: 50%;
  border: 3px solid var(--primary-color);
}

.timeline-item::after {
  content: '';
  position: absolute;
  left: 4.5px;
  top: 12px;
  width: 3px;
  height: calc(100% + 1rem);
  background-color: var(--primary-color);
}

.timeline-item:last-child::after {
  display: none;
}

.faq-item {
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background-color: var(--light-bg);
  border-radius: 8px;
  border-left: 4px solid var(--accent-light);
}

.faq-item h4 {
  color: var(--accent-blue);
  cursor: pointer;
  user-select: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item h4::after {
  content: '+';
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-item.active h4::after {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  margin-top: 1rem;
  line-height: 1.8;
}

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

.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: var(--accent-blue);
  color: var(--white);
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-family: 'Montserrat', sans-serif;
}

.cta-button:hover {
  background-color: var(--primary-color);
  color: var(--dark-text);
  box-shadow: 0 6px 16px rgba(100, 149, 237, 0.3);
}

.disclaimer-box {
  background-color: var(--accent-cyan);
  border-left: 4px solid var(--accent-blue);
  padding: 1.5rem;
  border-radius: 6px;
  margin: 2rem 0;
  line-height: 1.8;
  font-size: 0.95rem;
}

.disclaimer-box strong {
  color: var(--accent-blue);
}

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

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

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

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

footer h5 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

footer .footer-links {
  list-style: none;
}

footer .footer-links li {
  margin-bottom: 0.5rem;
}

footer .divider {
  border-top: 1px solid rgba(255,255,255,0.2);
  margin: 2rem 0;
  padding-top: 1rem;
}

footer .copyright {
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}

.contact-form {
  max-width: 600px;
  margin: 2rem auto;
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid var(--primary-color);
  border-radius: 6px;
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  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(100, 149, 237, 0.1);
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--dark-text);
  color: var(--white);
  padding: 1.5rem 2rem;
  z-index: 999;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
  animation: slideUp 0.4s ease;
}

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

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}

.cookie-text p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.cookie-text a {
  color: var(--primary-color);
  text-decoration: none;
}

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

.cookie-btn {
  padding: 0.7rem 1.5rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  transition: all 0.3s ease;
  white-space: nowrap;
}

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

.cookie-accept:hover {
  background-color: var(--primary-color);
  color: var(--dark-text);
}

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

.cookie-reject:hover {
  background-color: var(--primary-color);
  color: var(--dark-text);
  border-color: var(--primary-color);
}

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

.cookie-more:hover {
  background-color: var(--primary-color);
  color: var(--dark-text);
  border-color: var(--primary-color);
}

.hidden {
  display: none;
}

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

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  .hero {
    min-height: 400px;
  }

  .hero h1 {
    font-size: 2rem;
  }

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

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

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

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

  .cookie-content {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .cookie-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cookie-btn {
    width: 100%;
  }

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

@media (max-width: 480px) {
  section {
    padding: 2rem 0;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.2rem;
  }

  table {
    font-size: 0.9rem;
  }

  th, td {
    padding: 0.75rem 0.5rem;
  }
}
