:root {
  --coral-red: #ff6b6b;
  --soft-beige: #f8f6f3;
  --warm-grey: #e8e4df;
  --dark-grey: #4a4a4a;
  --pure-white: #ffffff;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  color: var(--dark-grey);
  background-color: var(--pure-white);
  line-height: 1.6;
}

.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--pure-white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  z-index: 1000;
}

.navbar {
  padding: 1rem 0;
}

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

.navbar-brand:hover {
  color: var(--coral-red);
  opacity: 0.8;
}

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

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

.btn-cta {
  background: linear-gradient(135deg, var(--coral-red), #ff8f8f);
  color: var(--pure-white);
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
  color: var(--pure-white);
}

main {
  padding-top: 80px;
}

.hero-section {
  background: linear-gradient(135deg, var(--soft-beige), var(--warm-grey));
  padding: 6rem 0;
}

.hero-section h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--dark-grey);
}

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

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

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

.content-section h3,
.content-section h4 {
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--dark-grey);
}

.content-section p {
  margin-bottom: 1.5rem;
  color: var(--dark-grey);
}

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

.section-intro {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  color: var(--dark-grey);
}

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

.rounded {
  border-radius: 12px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--coral-red), #ff8f8f);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 25px;
  transition: all 0.3s ease;
  color: var(--pure-white);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
  background: linear-gradient(135deg, #ff8f8f, var(--coral-red));
  color: var(--pure-white);
}

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

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

.faq-item h4 {
  color: var(--coral-red);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

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

.contact-form .form-control {
  border: 1px solid var(--warm-grey);
  border-radius: 8px;
  padding: 0.75rem;
  margin-bottom: 1rem;
}

.contact-form .form-control:focus {
  border-color: var(--coral-red);
  box-shadow: 0 0 0 0.2rem rgba(255, 107, 107, 0.25);
}

.contact-info {
  background-color: var(--soft-beige);
  padding: 1.5rem;
  border-radius: 12px;
}

.site-footer {
  background-color: var(--dark-grey);
  color: var(--pure-white);
  padding: 3rem 0 1rem;
}

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

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

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

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

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  margin-top: 2rem;
  text-align: center;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--dark-grey);
  color: var(--pure-white);
  padding: 1.5rem 0;
  z-index: 2000;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

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

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

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

.cookie-buttons .btn {
  white-space: nowrap;
  padding: 0.5rem 1.5rem;
}

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

.cookie-modal-content {
  background-color: var(--pure-white);
  padding: 2rem;
  border-radius: 12px;
  max-width: 500px;
  width: 90%;
}

.cookie-modal-content h3 {
  margin-bottom: 1.5rem;
  color: var(--dark-grey);
}

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

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

.cookie-option input[type="checkbox"] {
  margin-right: 0.5rem;
}

.cookie-modal-buttons {
  margin-top: 1.5rem;
  display: flex;
  gap: 0.5rem;
}

.policy-section {
  padding: 6rem 0 4rem;
}

.policy-section h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--dark-grey);
}

.policy-section h2 {
  font-size: 1.75rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--dark-grey);
}

.policy-section h3 {
  font-size: 1.25rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--coral-red);
}

.policy-section ul {
  margin-bottom: 1.5rem;
}

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

.thank-you-section {
  padding: 8rem 0 6rem;
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
}

.thank-you-section h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--dark-grey);
}

.btn-secondary {
  background-color: var(--warm-grey);
  color: var(--dark-grey);
  border: none;
}

.btn-secondary:hover {
  background-color: #d8d4cf;
  color: var(--dark-grey);
}

.btn-outline-secondary {
  border: 1px solid var(--warm-grey);
  color: var(--dark-grey);
}

.btn-outline-secondary:hover {
  background-color: var(--warm-grey);
  color: var(--dark-grey);
}

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

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

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

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

  .cookie-content p {
    margin-bottom: 1rem;
  }

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

  .cookie-buttons .btn {
    flex: 1;
  }
}

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