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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #2c2c2c;
  background-color: #fdfbf7;
}

.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  z-index: 1000;
}

.navbar {
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 600;
  color: #b19cd9;
}

.navbar-brand:hover {
  color: #9b7fc9;
}

.nav-link {
  color: #2c2c2c;
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #b19cd9;
}

.btn-cta {
  background: linear-gradient(135deg, #b19cd9 0%, #9b7fc9 100%);
  color: white;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 8px;
  font-weight: 500;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(177, 156, 217, 0.3);
  color: white;
}

.hero-section {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, #fdfbf7 0%, #f5f0ea 100%);
}

.hero-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-text {
  font-size: 1.15rem;
  color: #5a5a5a;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

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

.bg-light {
  background-color: #f9f7f4;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 1.5rem;
}

.section-intro {
  font-size: 1.15rem;
  color: #5a5a5a;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.subsection-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 1rem;
}

.rounded-img {
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  width: 100%;
  height: auto;
}

.custom-list {
  list-style: none;
  padding-left: 0;
}

.custom-list li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
}

.custom-list li:before {
  content: "•";
  color: #b19cd9;
  font-size: 1.5rem;
  position: absolute;
  left: 0;
  top: 0.5rem;
}

.boundary-box {
  background-color: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 2rem;
}

.boundary-list {
  list-style: none;
  padding-left: 0;
}

.boundary-list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.boundary-list li:before {
  content: "×";
  color: #e07a5f;
  font-size: 1.3rem;
  position: absolute;
  left: 0;
  top: 0.3rem;
  font-weight: bold;
}

.boundary-note {
  background-color: #fff8f0;
  padding: 2rem;
  border-radius: 10px;
  border-left: 4px solid #b19cd9;
  margin-top: 2rem;
}

.boundary-note p {
  margin-bottom: 0;
  color: #5a5a5a;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background-color: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 1.5rem;
}

.faq-question {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 1rem;
}

.faq-answer {
  color: #5a5a5a;
  margin-bottom: 0;
}

.contact-section {
  padding: 80px 0;
  background-color: #f9f7f4;
}

.contact-disclaimer {
  text-align: center;
  font-size: 0.95rem;
  color: #5a5a5a;
  margin-bottom: 2rem;
  font-style: italic;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.contact-form {
  background-color: white;
  padding: 2.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

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

.form-control:focus {
  border-color: #b19cd9;
  box-shadow: 0 0 0 0.2rem rgba(177, 156, 217, 0.25);
}

.btn-primary {
  background: linear-gradient(135deg, #b19cd9 0%, #9b7fc9 100%);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-weight: 500;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(177, 156, 217, 0.3);
}

.form-message {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 8px;
  display: none;
}

.form-message.success {
  background-color: #d4edda;
  color: #155724;
  display: block;
}

.form-message.error {
  background-color: #f8d7da;
  color: #721c24;
  display: block;
}

.contact-info {
  text-align: center;
  margin-top: 4rem;
}

.contact-info h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 1rem;
}

.contact-info p {
  margin-bottom: 0.5rem;
  color: #5a5a5a;
}

.contact-info a {
  color: #b19cd9;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.main-footer {
  background-color: #2c2c2c;
  color: white;
  padding: 2rem 0;
  margin-top: 0;
}

.main-footer a {
  color: #b19cd9;
  text-decoration: none;
}

.main-footer a:hover {
  text-decoration: underline;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(44, 44, 44, 0.98);
  color: white;
  padding: 1.5rem 0;
  z-index: 2000;
  display: none;
}

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

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

.cookie-content p {
  margin: 0;
  flex: 1;
  min-width: 300px;
  margin-bottom: 1rem;
}

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

.cookie-buttons .btn {
  padding: 0.5rem 1.5rem;
  border-radius: 6px;
}

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

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

.cookie-modal-content {
  background-color: white;
  padding: 2.5rem;
  border-radius: 10px;
  max-width: 500px;
  width: 90%;
}

.cookie-modal-content h3 {
  margin-bottom: 1.5rem;
  color: #2c2c2c;
}

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

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

.cookie-option input[type="checkbox"] {
  margin-right: 0.75rem;
  width: 18px;
  height: 18px;
}

.cookie-modal-buttons {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
}

.btn-secondary {
  background-color: #6c757d;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 6px;
  color: white;
}

.btn-outline-secondary {
  background-color: transparent;
  border: 2px solid #6c757d;
  padding: 0.5rem 1.5rem;
  border-radius: 6px;
  color: #6c757d;
}

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

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

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

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

  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-buttons .btn {
    width: 100%;
  }
}
