:root {
  --primary: #2E4057;
  --accent-gold: #F9A825;
  --accent-green: #7CB342;
  --accent-red: #E57373;
  --white: #FFFFFF;
  --light-gray: #F5F5F5;
  --medium-gray: #EEEEEE;
  --dark-gray: #666666;
  --text-dark: #333333;
  --border-light: #E0E0E0;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
}

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

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

.navbar-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.navbar-menu a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.navbar-menu a:hover,
.navbar-menu a.active {
  color: var(--accent-gold);
}

.navbar-menu a.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--accent-gold);
}

main {
  padding-top: 70px;
}

section {
  padding: 4rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(46, 64, 87, 0.6);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero h1 {
  font-family: 'Outfit', 'Montserrat', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

h1, h2, h3 {
  font-family: 'Outfit', 'Montserrat', sans-serif;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

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

h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-top: 2rem;
}

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

p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
  color: var(--text-dark);
}

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

.section-container.reverse {
  direction: rtl;
}

.section-container.reverse > * {
  direction: ltr;
}

.section-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.section-text h2 {
  text-align: left;
}

ul, ol {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

li {
  margin-bottom: 1rem;
  line-height: 1.8;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

th {
  background-color: var(--primary);
  color: var(--white);
  padding: 1.2rem;
  text-align: left;
  font-weight: 600;
}

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

tr:last-child td {
  border-bottom: none;
}

tr:hover {
  background-color: var(--light-gray);
}

.cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

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

.card:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
  border-color: var(--accent-gold);
}

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

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

.card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

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

.cta-button:hover,
.btn:hover {
  background-color: transparent;
  color: var(--accent-gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(249, 168, 37, 0.3);
}

.btn-secondary {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.btn-secondary:hover {
  background-color: transparent;
  color: var(--primary);
}

.disclaimer {
  background-color: var(--light-gray);
  border-left: 4px solid var(--accent-red);
  padding: 1.5rem;
  border-radius: 6px;
  margin: 2rem 0;
}

.disclaimer p {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: var(--dark-gray);
}

footer {
  background-color: var(--primary);
  color: var(--white);
  padding: 3rem 2rem;
  margin-top: 4rem;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.footer-section h3 {
  color: var(--accent-gold);
  margin-bottom: 1rem;
}

.footer-section p, .footer-section a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  line-height: 1.8;
}

.footer-section a:hover {
  color: var(--accent-gold);
  transition: color 0.3s ease;
}

.footer-bottom {
  max-width: 1400px;
  margin: 2rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--primary);
  color: var(--white);
  padding: 1.5rem 2rem;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.15);
  gap: 2rem;
}

.cookie-content {
  flex: 1;
}

.cookie-content p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

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

.cookie-btn {
  padding: 0.6rem 1.2rem;
  background-color: var(--accent-gold);
  color: var(--white);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.cookie-btn:hover {
  background-color: var(--accent-green);
  transform: translateY(-2px);
}

.cookie-btn.secondary {
  background-color: transparent;
  border: 1px solid var(--white);
  color: var(--white);
}

.cookie-btn.secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-light);
  border-radius: 6px;
  font-family: 'Inter', 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-gold);
  box-shadow: 0 0 0 3px rgba(249, 168, 37, 0.1);
}

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

.thank-you-container {
  text-align: center;
  padding: 4rem 2rem;
  max-width: 600px;
  margin: 0 auto;
}

.thank-you-container h1 {
  color: var(--accent-gold);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.thank-you-container p {
  font-size: 1.1rem;
  color: var(--dark-gray);
  margin-bottom: 2rem;
}

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

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background-color: var(--accent-gold);
}

.timeline-item {
  margin-bottom: 3rem;
  width: 45%;
}

.timeline-item:nth-child(odd) {
  margin-left: 0;
  text-align: right;
  padding-right: 3rem;
}

.timeline-item:nth-child(even) {
  margin-left: 55%;
  text-align: left;
  padding-left: 3rem;
}

.timeline-dot {
  position: absolute;
  width: 16px;
  height: 16px;
  background-color: var(--accent-gold);
  border: 3px solid var(--white);
  border-radius: 50%;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  box-shadow: 0 0 0 4px var(--light-gray);
}

.timeline-content {
  background-color: var(--light-gray);
  padding: 1.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.timeline-content:hover {
  background-color: var(--medium-gray);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.breadcrumb {
  max-width: 1400px;
  margin: 1rem auto;
  padding: 0 2rem;
}

.breadcrumb a {
  color: var(--accent-gold);
  text-decoration: none;
  margin: 0 0.5rem;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

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

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

  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.4rem;
  }

  .section-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

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

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

  .timeline::before {
    left: 0;
  }

  .timeline-item {
    width: 100%;
    margin-left: 0 !important;
    padding-left: 3rem !important;
    text-align: left !important;
  }

  .timeline-dot {
    left: 0;
  }

  section {
    padding: 2rem 1rem;
  }

  .navbar {
    padding: 1rem;
  }
}
