:root {
  --primary-color: #0077b6;
  --primary-light: #00a8e8;
  --primary-dark: #005f8d;
  --text-color: #2d3436;
  --text-light: #636e72;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --border-color: #e9ecef;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--bg-white);
}

h1,
h2,
h3 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 1.75rem;
  color: var(--text-color);
}

h3 {
  font-size: 1.25rem;
  color: var(--text-color);
}

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

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

.navbar {
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.navbar-nav .nav-link:hover,
.navbar-nav .nav-item.active .nav-link {
  color: var(--primary-color);
}

.hero-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

.hero-section h1 {
  font-size: 2.75rem;
  margin-bottom: 1.5rem;
  color: var(--text-color);
}

.hero-section .lead {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.page-header {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
  text-align: center;
}

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

.page-header .lead {
  color: var(--text-light);
}

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

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

.rounded-custom {
  border-radius: 12px;
}

.info-card {
  background: var(--bg-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

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

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

.card-body-custom {
  padding: 1.5rem;
}

.card-body-custom h3 {
  margin-bottom: 0.75rem;
}

.card-body-custom p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.context-box {
  background: linear-gradient(135deg, #e3f2fd 0%, #f0f7ff 100%);
  border-left: 4px solid var(--primary-color);
  padding: 1.5rem;
  border-radius: 0 12px 12px 0;
  margin-top: 2rem;
}

.context-box h3 {
  color: var(--primary-color);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.context-box p {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.context-box p:last-child {
  margin-bottom: 0;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 0.75rem 2rem;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
}

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 0.75rem 2rem;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--bg-white);
}

.disclaimer-text {
  font-size: 0.85rem;
  color: var(--text-light);
  font-style: italic;
}

.contact-info {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 12px;
}

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

.contact-form-wrapper {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 12px;
}

.contact-form-wrapper h2 {
  margin-bottom: 0.5rem;
}

.contact-form-wrapper p {
  margin-bottom: 1.5rem;
}

.form-control {
  border-radius: 8px;
  border: 1px solid var(--border-color);
  padding: 0.75rem 1rem;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(0, 119, 182, 0.15);
}

.thank-you-content {
  padding: 3rem;
  background: var(--bg-light);
  border-radius: 12px;
}

.policy-content h2 {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.policy-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.policy-content ul {
  color: var(--text-light);
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.policy-content li {
  margin-bottom: 0.5rem;
}

.footer-section {
  background-color: var(--text-color);
  color: var(--bg-white);
  padding: 4rem 0 2rem;
}

.footer-section h3 {
  color: var(--bg-white);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.footer-section .brand-text {
  color: var(--primary-light);
  font-size: 1.25rem;
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-section hr {
  border-color: rgba(255, 255, 255, 0.1);
  margin: 2rem 0 1.5rem;
}

.footer-section .disclaimer-text {
  color: rgba(255, 255, 255, 0.5);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-white);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  padding: 1.5rem 0;
  z-index: 1000;
  display: none;
}

.cookie-banner p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

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

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

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

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

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

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

  h2 {
    font-size: 1.5rem;
  }

  .hero-section h1 {
    font-size: 1.75rem;
  }

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

  .cookie-banner .text-right {
    text-align: left !important;
    margin-top: 1rem;
  }

  .footer-section {
    padding: 3rem 0 2rem;
  }
}
