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

:root {
  --primary-color: #d4705b;
  --primary-dark: #b85d4a;
  --secondary-color: #2c2c2c;
  --light-bg: #f9f7f4;
  --white: #ffffff;
  --text-dark: #2c2c2c;
  --text-muted: #6b6b6b;
  --border-color: #e5e5e5;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica", "Arial", sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

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

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

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  border: none;
  border-radius: 8px;
  padding: 12px 30px;
  font-weight: 500;
  transition: all 0.3s ease;
  color: var(--white);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(212, 112, 91, 0.3);
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
  color: var(--white);
}

.btn-secondary {
  background: var(--secondary-color);
  border: none;
  border-radius: 8px;
  padding: 12px 30px;
  font-weight: 500;
  transition: all 0.3s ease;
  color: var(--white);
}

.btn-secondary:hover {
  background: #1a1a1a;
  transform: translateY(-2px);
  color: var(--white);
}

.btn-light {
  background: var(--white);
  border: none;
  border-radius: 8px;
  padding: 12px 30px;
  font-weight: 500;
  transition: all 0.3s ease;
  color: var(--primary-color);
}

.btn-light:hover {
  background: var(--light-bg);
  transform: translateY(-2px);
  color: var(--primary-color);
}

.btn-outline-secondary {
  border: 2px solid var(--secondary-color);
  background: transparent;
  border-radius: 8px;
  padding: 10px 28px;
  font-weight: 500;
  transition: all 0.3s ease;
  color: var(--secondary-color);
}

.btn-outline-secondary:hover {
  background: var(--secondary-color);
  color: var(--white);
}

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

.navbar {
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

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

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

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

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

.hero-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.hero-text {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

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

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

.content-section.bg-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.section-title {
  margin-bottom: 1.5rem;
}

.section-text {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.content-section.bg-primary .section-title,
.content-section.bg-primary .section-text {
  color: var(--white);
}

.rounded-lg {
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.testimonial-card {
  background: var(--white);
  padding: 2rem;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary-color);
}

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

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

.faq-question {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.faq-answer {
  color: var(--text-muted);
}

.contact-form .form-control {
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  padding: 12px 15px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.contact-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.contact-form .form-control:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
  color: var(--white);
  box-shadow: none;
}

.contact-form label {
  color: var(--white);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.contact-info {
  color: var(--white);
}

.contact-info p {
  margin-bottom: 0.5rem;
}

.footer {
  background: var(--secondary-color);
  color: var(--white);
  padding: 60px 0 30px;
}

.footer h5 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.footer a {
  color: var(--white);
  transition: color 0.3s ease;
}

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

.footer ul {
  padding: 0;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--secondary-color);
  color: var(--white);
  padding: 20px 0;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1001;
  display: none;
}

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

.cookie-banner p {
  margin-bottom: 0;
}

.cookie-banner a {
  color: var(--primary-color);
}

.thank-you-section {
  padding: 150px 0 100px;
  text-align: center;
}

.legal-section {
  padding: 120px 0 80px;
}

.legal-section h1 {
  color: var(--primary-color);
}

.legal-section h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.legal-section h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

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

.legal-section .alert {
  border-radius: 8px;
  border: none;
  padding: 1.5rem;
}

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

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

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

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

  .navbar-nav {
    margin-top: 1rem;
  }

  .navbar-nav .btn-primary {
    margin-top: 1rem;
    margin-left: 0;
  }

  .cookie-banner .col-lg-4 {
    margin-top: 1rem;
    text-align: center;
  }

  .cookie-banner .text-right {
    text-align: center;
  }
}

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

  .btn-primary,
  .btn-secondary,
  .btn-light {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .cookie-banner .btn {
    display: block;
    width: 100%;
    margin-bottom: 0.5rem;
  }
}
