@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700;900&family=Open+Sans:wght@400;500;600;700&display=swap');

:root {
  --primary-color: #1A5276;
  --accent-gold: #F4D03F;
  --accent-blue: #5DADE2;
  --accent-light: #A9CCE3;
  --neutral-dark: #1a1a1a;
  --neutral-gray: #666666;
  --neutral-light-gray: #f5f5f5;
  --neutral-white: #ffffff;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--neutral-dark);
  background-color: var(--neutral-white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1.2rem;
}

h1 {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.2;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  margin-top: 3rem;
}

h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  margin-top: 2rem;
}

p {
  margin-bottom: 1.2rem;
  line-height: 1.7;
  color: var(--neutral-dark);
}

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

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

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--neutral-white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 1.2rem 0;
}

.navbar-brand {
  font-family: 'Lato', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--primary-color);
  transition: opacity 0.3s ease;
}

.navbar-brand:hover {
  opacity: 0.8;
}

.navbar-nav .nav-link {
  color: var(--neutral-dark) !important;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  margin: 0 1.2rem;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-color) !important;
}

main {
  margin-top: 80px;
}

.hero-section {
  position: relative;
  height: 600px;
  background: url('images/hero-landscape.jpg') center/cover no-repeat;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--neutral-white);
}

.hero-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(26, 82, 118, 0.4);
  z-index: 1;
}

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

.hero-content h1 {
  color: var(--neutral-white);
  font-size: 3.2rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content h2 {
  color: var(--accent-gold);
  font-size: 1.6rem;
  margin-bottom: 0;
  font-weight: 500;
}

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

.section-full-width {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  padding-left: 2rem;
  padding-right: 2rem;
}

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

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

.two-column-text h2 {
  color: var(--primary-color);
  margin-top: 0;
}

.two-column-text p {
  font-size: 1.05rem;
  color: var(--neutral-gray);
}

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

.card {
  background-color: var(--neutral-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-body {
  padding: 1.5rem;
}

.card-body h3 {
  margin-top: 0;
  margin-bottom: 0.8rem;
}

.card-body p {
  margin-bottom: 0;
  font-size: 0.95rem;
  color: var(--neutral-gray);
}

ul {
  margin: 1.5rem 0;
  padding-left: 1.5rem;
}

ul li {
  margin-bottom: 0.8rem;
  color: var(--neutral-gray);
  line-height: 1.7;
}

ul li strong {
  color: var(--primary-color);
  font-weight: 600;
}

.button-group {
  display: flex;
  gap: 1rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.btn-custom {
  display: inline-block;
  padding: 0.9rem 2rem;
  border-radius: 6px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid var(--primary-color);
  text-decoration: none;
}

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

.btn-primary:hover {
  background-color: var(--accent-blue);
  border-color: var(--accent-blue);
  box-shadow: 0 4px 8px rgba(93, 173, 226, 0.3);
}

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

.btn-secondary:hover {
  background-color: var(--neutral-light-gray);
  color: var(--primary-color);
}

.disclaimer-box {
  background-color: #f0f8ff;
  border-left: 4px solid var(--accent-blue);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 4px;
  font-size: 0.95rem;
  color: var(--neutral-gray);
}

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

footer {
  background-color: var(--primary-color);
  color: var(--neutral-white);
  padding: 3rem 2rem;
  margin-top: 4rem;
  font-size: 0.95rem;
  line-height: 1.8;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

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

.footer-section h4 {
  color: var(--accent-gold);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

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

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

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

.footer-bottom {
  text-align: center;
  font-size: 0.9rem;
  color: var(--accent-light);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--neutral-white);
  border-top: 2px solid var(--primary-color);
  padding: 1.5rem 2rem;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
  z-index: 999;
  display: none;
}

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

.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;
  color: var(--neutral-gray);
}

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

.btn-cookie {
  padding: 0.7rem 1.5rem;
  border-radius: 6px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  cursor: pointer;
  border: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.btn-accept {
  background-color: var(--primary-color);
  color: var(--neutral-white);
}

.btn-accept:hover {
  background-color: var(--accent-blue);
}

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

.btn-decline:hover {
  background-color: var(--neutral-light-gray);
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--primary-color);
  font-family: 'Lato', sans-serif;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: 'Open Sans', 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(93, 173, 226, 0.1);
}

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

.contact-info {
  margin-bottom: 3rem;
}

.contact-info h3 {
  margin-top: 0;
}

.contact-detail {
  margin-bottom: 1.2rem;
}

.contact-detail strong {
  color: var(--primary-color);
  font-family: 'Lato', sans-serif;
}

.timeline {
  position: relative;
  padding-left: 3rem;
  margin: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--accent-light);
}

.timeline-item {
  margin-bottom: 2rem;
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -1.5rem;
  top: 0.5rem;
  width: 12px;
  height: 12px;
  background-color: var(--primary-color);
  border-radius: 50%;
  border: 3px solid var(--neutral-white);
}

.timeline-item h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.section-intro {
  background-color: var(--neutral-light-gray);
  padding: 4rem 2rem;
  text-align: center;
}

.section-intro h2 {
  margin-top: 0;
}

.section-intro p {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #eee;
}

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

.faq-question {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background-color: var(--neutral-light-gray);
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #e8e8e8;
}

.faq-question h3 {
  margin: 0;
  flex: 1;
  cursor: pointer;
}

.faq-toggle {
  font-size: 1.5rem;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.faq-answer {
  display: none;
  padding: 1.5rem 1rem;
  background-color: #fafafa;
  border-radius: 0 0 6px 6px;
  margin-top: -1px;
}

.faq-answer.show {
  display: block;
}

.badge {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  background-color: var(--accent-light);
  color: var(--primary-color);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}

.cta-soft {
  background-color: var(--neutral-light-gray);
  padding: 3rem 2rem;
  text-align: center;
  border-radius: 8px;
  margin: 3rem 0;
}

.cta-soft h2 {
  margin-top: 0;
}

.cta-soft p {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

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

  h2 {
    font-size: 1.8rem;
  }

  h3 {
    font-size: 1.4rem;
  }

  .hero-section {
    height: 400px;
  }

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

  .hero-content h2 {
    font-size: 1.2rem;
  }

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

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

  section {
    padding: 3rem 1.5rem;
  }

  .navbar-nav .nav-link {
    margin: 0.5rem 0;
  }

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

  .button-group {
    flex-direction: column;
  }

  .btn-custom {
    width: 100%;
  }
}

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

  h2 {
    font-size: 1.4rem;
  }

  h3 {
    font-size: 1.1rem;
  }

  .hero-section {
    height: 300px;
  }

  .hero-content h1 {
    font-size: 1.5rem;
  }

  .hero-content h2 {
    font-size: 1rem;
  }

  section {
    padding: 2rem 1rem;
  }

  main {
    margin-top: 70px;
  }

  header {
    padding: 0.8rem 0;
  }

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