@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");

:root {
  --primary-color: #7fb3d5;
  --primary-dark: #5a9bc4;
  --secondary-color: #f4f6f8;
  --text-dark: #2c3e50;
  --text-light: #5d6d7e;
  --text-muted: #95a5a6;
  --bg-white: #ffffff;
  --bg-light: #f8f9fa;
  --border-color: #e0e6ed;
  --shadow-light: rgba(0, 0, 0, 0.05);
  --shadow-medium: rgba(0, 0, 0, 0.1);
  --radius: 8px;
}

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

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

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

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

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

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

.lead {
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text-light);
}

.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: var(--bg-white);
  box-shadow: 0 2px 10px var(--shadow-light);
}

.navbar {
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.navbar-brand:hover {
  color: var(--primary-dark);
}

.navbar-light .navbar-nav .nav-link {
  color: var(--text-dark);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

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

.btn-cta {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: var(--bg-white);
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-cta:hover {
  color: var(--bg-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--shadow-medium);
}

main {
  margin-top: 76px;
}

.hero-section {
  background: linear-gradient(135deg, #eaf2f8 0%, #d6eaf8 100%);
  padding: 5rem 0;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.hero-section h1 {
  margin-bottom: 1.5rem;
}

.hero-section .btn-primary {
  margin-top: 2rem;
}

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

.content-section.bg-light {
  background-color: var(--bg-light);
}

.intro-text {
  font-size: 1.125rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.img-fluid {
  width: 100%;
  height: auto;
}

.rounded {
  border-radius: var(--radius);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  border: none;
  color: var(--bg-white);
  padding: 0.75rem 2rem;
  border-radius: var(--radius);
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--shadow-medium);
}

.term-list {
  margin-top: 2rem;
}

.term-item {
  background-color: var(--bg-white);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: var(--radius);
  border-left: 4px solid var(--primary-color);
  box-shadow: 0 2px 8px var(--shadow-light);
}

.term-item h4 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.scenario-card {
  background-color: var(--bg-white);
  padding: 2rem;
  margin-bottom: 1.5rem;
  border-radius: var(--radius);
  box-shadow: 0 2px 8px var(--shadow-light);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.scenario-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px var(--shadow-medium);
}

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

.faq-item {
  background-color: var(--bg-white);
  padding: 2rem;
  margin-bottom: 1.5rem;
  border-radius: var(--radius);
  box-shadow: 0 2px 8px var(--shadow-light);
}

.faq-item h4 {
  color: var(--primary-color);
  margin-bottom: 0.75rem;
}

.contact-section {
  background-color: var(--bg-light);
}

.contact-info {
  background-color: var(--bg-white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: 0 2px 8px var(--shadow-light);
  margin-top: 2rem;
}

.contact-info h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.contact-form {
  background-color: var(--bg-white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: 0 2px 8px var(--shadow-light);
}

.form-control {
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 0.75rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(127, 179, 213, 0.25);
  outline: none;
}

.closing-statement {
  background-color: var(--secondary-color);
  padding: 2rem;
  border-radius: var(--radius);
  border-left: 4px solid var(--primary-color);
}

.closing-statement p {
  margin-bottom: 0;
  font-size: 0.95rem;
  color: var(--text-light);
}

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

.site-footer h5 {
  color: var(--bg-white);
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.site-footer p {
  color: var(--bg-light);
  font-size: 0.9rem;
}

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

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

.footer-links a {
  color: var(--bg-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-color);
}

.copyright {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-top: 1rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--text-dark);
  color: var(--bg-white);
  padding: 1.5rem 0;
  z-index: 9999;
  box-shadow: 0 -2px 10px var(--shadow-medium);
  display: none;
}

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

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.cookie-content p {
  margin: 0;
  flex: 1;
  min-width: 300px;
  color: var(--bg-light);
}

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

.cookie-buttons .btn {
  padding: 0.5rem 1.5rem;
  font-size: 0.9rem;
}

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

.cookie-buttons .btn-secondary:hover {
  background-color: var(--bg-light);
  color: var(--text-dark);
}

.cookie-buttons .btn-outline-secondary {
  background-color: transparent;
  border: 1px solid var(--bg-light);
  color: var(--bg-light);
}

.cookie-buttons .btn-outline-secondary:hover {
  background-color: var(--bg-light);
  color: var(--text-dark);
}

.cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 10000;
  align-items: center;
  justify-content: center;
}

.cookie-modal.show {
  display: flex;
}

.cookie-modal-content {
  background-color: var(--bg-white);
  padding: 2rem;
  border-radius: var(--radius);
  max-width: 500px;
  width: 90%;
}

.cookie-modal-content h3 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.cookie-option {
  margin-bottom: 1rem;
}

.cookie-option label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.cookie-option input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.cookie-option input[type="checkbox"]:disabled {
  cursor: not-allowed;
}

.cookie-modal-buttons {
  margin-top: 1.5rem;
  display: flex;
  gap: 0.75rem;
}

.policy-page {
  padding: 4rem 0;
  min-height: calc(100vh - 200px);
}

.policy-page h1 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.last-updated {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.policy-section {
  margin-bottom: 2.5rem;
}

.policy-section h2 {
  color: var(--text-dark);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--border-color);
}

.policy-section h3 {
  color: var(--primary-color);
  font-size: 1.25rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.policy-section ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.policy-section li {
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

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

.policy-section a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.back-link {
  margin-top: 3rem;
  text-align: center;
}

.thank-you-page {
  padding: 6rem 0;
  min-height: calc(100vh - 200px);
}

.thank-you-content {
  padding: 3rem;
  background-color: var(--bg-light);
  border-radius: var(--radius);
  box-shadow: 0 4px 16px var(--shadow-light);
}

.thank-you-content h1 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.contact-details {
  background-color: var(--bg-white);
  padding: 1.5rem;
  border-radius: var(--radius);
  margin: 2rem 0;
}

@media (max-width: 991px) {
  .hero-section {
    padding: 3rem 0;
    min-height: auto;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

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

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

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

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

  h2 {
    font-size: 1.5rem;
  }

  .lead {
    font-size: 1.125rem;
  }

  .hero-section {
    padding: 2rem 0;
  }

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

  .term-item,
  .scenario-card,
  .faq-item {
    padding: 1.25rem;
  }

  .site-footer {
    text-align: center;
  }

  .site-footer .text-right {
    text-align: center;
  }
}
