:root {
  --primary-color: #4a90e2;
  --primary-dark: #357abd;
  --primary-light: #7fb3e8;
  --text-dark: #2c3e50;
  --text-light: #6c757d;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --border-color: #e0e0e0;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
}

* {
  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-dark);
  line-height: 1.6;
  background-color: var(--bg-white);
}

.site-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: var(--shadow-sm);
  padding: 0;
}

.navbar {
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--bg-white) !important;
  letter-spacing: -0.5px;
}

.navbar-light .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: all 0.3s ease;
  border-radius: 6px;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: var(--bg-white) !important;
  background-color: rgba(255, 255, 255, 0.1);
}

.hero-section {
  position: relative;
  overflow: hidden;
  margin-bottom: 3rem;
}

.hero-image {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(74, 144, 226, 0.85) 0%, rgba(53, 122, 189, 0.85) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  text-align: center;
  color: var(--bg-white);
  padding: 2rem;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hero-content .lead {
  font-size: 1.5rem;
  font-weight: 300;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.main-content {
  min-height: 60vh;
}

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

.content-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.content-section h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.content-section p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 1.25rem;
}

.bg-light {
  background: linear-gradient(180deg, var(--bg-light) 0%, rgba(248, 249, 250, 0.5) 100%);
}

.card {
  border: 1px solid var(--border-color);
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card-img-top {
  height: 220px;
  object-fit: cover;
}

.card-body {
  padding: 1.5rem;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.card-text {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.6;
}

.rounded {
  border-radius: 12px !important;
}

.shadow-sm {
  box-shadow: var(--shadow-sm) !important;
}

.info-box {
  background-color: var(--bg-white);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.info-box h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.info-box ul {
  list-style: none;
  padding-left: 0;
}

.info-box ul li {
  padding: 0.5rem 0;
  padding-left: 1.75rem;
  position: relative;
}

.info-box ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.page-header {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
  color: var(--bg-white);
  padding: 4rem 0 3rem;
  margin-bottom: 3rem;
}

.page-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.page-header .lead {
  font-size: 1.25rem;
  opacity: 0.95;
}

.principles-list .principle-item {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
}

.principles-list .principle-item:last-child {
  border-bottom: none;
}

.principles-list h5 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
}

.principles-list p {
  margin-bottom: 0;
}

.contact-info h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
}

.contact-info p {
  font-size: 1rem;
  color: var(--text-light);
}

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

.form-control {
  border: 2px solid var(--border-color);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: all 0.3s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  border: none;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

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

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
}

.cta-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: var(--bg-white);
  padding: 5rem 0;
  margin-top: 3rem;
}

.cta-section h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--bg-white);
}

.cta-section .lead {
  font-size: 1.25rem;
  opacity: 0.95;
}

.cta-section .btn-primary {
  background-color: var(--bg-white);
  color: var(--primary-color);
}

.cta-section .btn-primary:hover {
  background-color: var(--bg-light);
  color: var(--primary-dark);
}

.thank-you-section {
  padding: 5rem 0;
  min-height: 50vh;
  display: flex;
  align-items: center;
}

.thank-you-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  color: var(--primary-color);
}

.thank-you-icon svg {
  width: 100%;
  height: 100%;
}

.accordion .card {
  border-radius: 0;
  border: none;
  border-bottom: 1px solid var(--border-color);
}

.accordion .card:first-child {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.accordion .card:last-child {
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  border-bottom: 1px solid var(--border-color);
}

.accordion .card-header {
  background-color: var(--bg-white);
  border: none;
  padding: 0;
}

.accordion .btn-link {
  width: 100%;
  text-align: left;
  padding: 1.25rem 1.5rem;
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  display: block;
}

.accordion .btn-link:hover {
  color: var(--primary-color);
  text-decoration: none;
}

.accordion .card-body {
  padding: 1.5rem;
  color: var(--text-light);
}

.site-footer {
  background-color: var(--text-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 3rem 0 1.5rem;
  margin-top: 3rem;
}

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

.site-footer p {
  font-size: 0.95rem;
  line-height: 1.6;
}

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

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

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

.site-footer a:hover {
  color: var(--bg-white);
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--text-dark) 0%, #1a252f 100%);
  color: var(--bg-white);
  padding: 1.25rem 0;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  display: none;
}

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

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

.cookie-banner a {
  color: var(--primary-light);
  text-decoration: underline;
}

.cookie-banner .btn-light {
  background-color: var(--bg-white);
  color: var(--text-dark);
  border: none;
}

.cookie-banner .btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: var(--bg-white);
}

.cookie-banner .btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: var(--bg-white);
}

@media (max-width: 991px) {
  .navbar-collapse {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content .lead {
    font-size: 1.125rem;
  }

  .hero-image {
    height: 350px;
  }

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

  .content-section h2 {
    font-size: 1.75rem;
  }

  .page-header {
    padding: 3rem 0 2rem;
  }

  .page-header h1 {
    font-size: 2rem;
  }

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

  .cta-section h2 {
    font-size: 1.75rem;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 1.75rem;
  }

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

  .hero-image {
    height: 300px;
  }

  .content-section h2 {
    font-size: 1.5rem;
  }

  .content-section h3 {
    font-size: 1.25rem;
  }

  .cookie-banner {
    padding: 1rem 0;
  }

  .cookie-banner .btn-sm {
    font-size: 0.85rem;
    padding: 0.4rem 0.8rem;
  }
}
