:root {
  --primary-blue: #4a90e2;
  --dark-blue: #2e5c8a;
  --light-blue: #e8f4fd;
  --text-dark: #2c3e50;
  --text-light: #5a6c7d;
  --bg-light: #f8f9fa;
  --white: #ffffff;
  --shadow: rgba(0, 0, 0, 0.1);
}

* {
  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(--white);
}

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;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

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

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

a:hover {
  color: var(--dark-blue);
  text-decoration: none;
}

.site-header {
  background: var(--white);
  box-shadow: 0 2px 8px var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
}

.logo-text {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

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

.hero-section {
  position: relative;
  margin-top: 0;
}

.hero-image {
  position: relative;
  height: 600px;
  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(46, 92, 138, 0.85) 0%, rgba(74, 144, 226, 0.75) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  text-align: center;
  color: var(--white);
  padding: 2rem;
  max-width: 800px;
}

.hero-content h1 {
  color: var(--white);
  font-size: 3rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-content .lead {
  font-size: 1.25rem;
  color: var(--white);
  opacity: 0.95;
}

.page-header {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
  color: var(--white);
  padding: 4rem 0 3rem;
  text-align: center;
}

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

.page-header .lead {
  color: var(--white);
  opacity: 0.9;
}

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

.section-block {
  margin-bottom: 4rem;
}

.section-block:last-child {
  margin-bottom: 0;
}

.section-block h2 {
  color: var(--dark-blue);
  margin-bottom: 1.5rem;
}

.section-block img {
  max-width: 100%;
  height: auto;
}

.cta-section {
  background: linear-gradient(135deg, var(--light-blue) 0%, rgba(232, 244, 253, 0.5) 100%);
  padding: 4rem 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.cta-section h3 {
  color: var(--dark-blue);
  margin-bottom: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
  border: none;
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(74, 144, 226, 0.4);
  background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-blue) 100%);
}

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

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

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

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

.site-footer ul {
  padding-left: 0;
}

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

.contact-info h5 {
  color: var(--dark-blue);
  font-size: 1rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.form-control {
  border: 2px solid #e0e6ed;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  transition: border-color 0.3s ease;
}

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

.policy-content {
  max-width: 900px;
  margin: 0 auto;
}

.policy-content h2 {
  margin-top: 2rem;
}

.policy-content h5 {
  color: var(--dark-blue);
  margin-top: 1rem;
}

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

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

.cookie-banner p {
  color: var(--white);
  margin-bottom: 0;
}

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

.cookie-banner .btn-light {
  background: var(--white);
  color: var(--text-dark);
  font-weight: 600;
  border-radius: 6px;
  padding: 0.5rem 1.5rem;
}

.thank-you-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-you-icon svg {
  display: inline-block;
}

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

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

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .hero-image {
    height: 400px;
  }

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

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

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

.shadow-sm {
  box-shadow: 0 2px 8px var(--shadow);
}

.rounded {
  border-radius: 12px;
}

img {
  max-width: 100%;
  height: auto;
}
