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

:root {
  --primary-color: #6ba3c1;
  --primary-dark: #5a8caa;
  --secondary-color: #f5f5f0;
  --text-dark: #2c2c2c;
  --text-medium: #5a5a5a;
  --text-light: #8a8a8a;
  --bg-white: #ffffff;
  --bg-light: #faf9f6;
  --border-color: #e5e5e0;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --border-radius: 12px;
}

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

.header-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--bg-white);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
}

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

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

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

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

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

.btn-outline-secondary {
  border: 2px solid var(--border-color);
  color: var(--text-medium);
  background: transparent;
  border-radius: var(--border-radius);
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
}

.btn-outline-secondary:hover {
  background: var(--secondary-color);
  border-color: var(--text-medium);
  color: var(--text-dark);
}

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

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--text-medium);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.hero-text {
  font-size: 1.125rem;
  color: var(--text-medium);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.content-section {
  padding: 80px 0;
}

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

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.section-text {
  font-size: 1.125rem;
  color: var(--text-medium);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.rounded-lg {
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
}

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

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

.faq-question {
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.faq-answer {
  font-size: 1.125rem;
  color: var(--text-medium);
  line-height: 1.8;
}

.faq-image-wrapper {
  margin-bottom: 3rem;
}

.contact-form-wrapper {
  background: var(--bg-white);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
}

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

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(107, 163, 193, 0.25);
}

.contact-info {
  background: var(--bg-light);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  border-left: 4px solid var(--primary-color);
}

.site-footer {
  background: var(--text-dark);
  color: var(--bg-light);
  padding: 60px 0 30px;
}

.footer-brand {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--bg-white);
  margin-bottom: 1rem;
}

.footer-text {
  color: var(--bg-light);
  font-size: 1rem;
  line-height: 1.8;
}

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

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

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

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

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

.footer-copyright {
  color: var(--text-light);
  font-size: 0.875rem;
  margin-top: 2rem;
}

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

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

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

.cookie-settings {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--bg-white);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  z-index: 10000;
  max-width: 500px;
  width: 90%;
  display: none;
}

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

.cookie-settings h3 {
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.policy-header {
  background: var(--bg-light);
  padding: 2rem 0;
  border-bottom: 1px solid var(--border-color);
}

.policy-back-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.policy-back-link:hover {
  color: var(--primary-dark);
}

.policy-wrapper {
  padding: 60px 0;
}

.policy-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.policy-intro {
  font-size: 1.25rem;
  color: var(--text-medium);
  margin-bottom: 3rem;
  line-height: 1.8;
}

.policy-subtitle {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-top: 3rem;
  margin-bottom: 1rem;
}

.policy-text {
  font-size: 1.125rem;
  color: var(--text-medium);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.policy-date {
  font-size: 1rem;
  color: var(--text-light);
  margin-top: 3rem;
  font-style: italic;
}

.thank-you-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

.thank-you-content {
  background: var(--bg-white);
  padding: 4rem 3rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
}

.thank-you-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.thank-you-text {
  font-size: 1.125rem;
  color: var(--text-medium);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

@media (max-width: 991px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.25rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .hero-section {
    padding: 120px 0 60px;
  }

  .content-section {
    padding: 60px 0;
  }
}

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

  .section-title {
    font-size: 1.75rem;
  }

  .contact-form-wrapper {
    padding: 1.5rem;
  }

  .thank-you-content {
    padding: 2.5rem 1.5rem;
  }
}
