:root {
  --primary-color: #4a5d4e;
  --secondary-color: #e8dfd0;
  --accent-color: #8b7355;
  --text-dark: #2c2c2c;
  --text-light: #6b6b6b;
  --background-light: #faf8f5;
  --white: #ffffff;
  --border-color: #e0e0e0;
}

* {
  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.5rem;
}

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

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

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

.navbar {
  padding: 1rem 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.navbar-brand .logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: -0.5px;
}

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

.hero {
  position: relative;
  height: 70vh;
  min-height: 500px;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: var(--white);
}

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

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

.page-header {
  padding: 4rem 0 2rem;
  background-color: var(--background-light);
  text-align: center;
}

.page-header h1 {
  margin-bottom: 0.5rem;
}

.page-header .lead {
  color: var(--text-light);
  font-size: 1.25rem;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white);
  padding: 0.75rem 2rem;
  font-weight: 500;
  border-radius: 4px;
  transition: all 0.3s ease;
}

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

.card {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-body {
  padding: 2rem;
}

.card-title {
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 1rem;
}

.text-link {
  color: var(--primary-color);
  font-weight: 500;
  display: inline-block;
  margin-top: 1rem;
  transition: color 0.3s ease;
}

.text-link:hover {
  color: var(--accent-color);
}

.format-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  text-align: center;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.format-card h5 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.format-duration {
  color: var(--accent-color);
  font-weight: 600;
  margin-top: 1rem;
}

.testimonial-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 8px;
  border-left: 4px solid var(--primary-color);
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 1rem;
}

.testimonial-author {
  font-weight: 600;
  color: var(--text-dark);
  text-align: right;
}

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

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

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

.cta-section {
  padding: 5rem 0;
  background-color: var(--secondary-color);
}

.cta-section h2 {
  margin-bottom: 1rem;
}

.value-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 8px;
  height: 100%;
  border: 1px solid var(--border-color);
}

.value-card h5 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.contact-info {
  margin-bottom: 2rem;
}

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

.form-control {
  border-radius: 4px;
  border: 1px solid var(--border-color);
  padding: 0.75rem;
}

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

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

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

.site-footer p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

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

.copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 1.5rem 0;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  display: none;
}

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

.cookie-consent p {
  color: var(--white);
  margin-bottom: 0;
  font-size: 0.9rem;
}

.cookie-consent a {
  color: var(--secondary-color);
  text-decoration: underline;
}

.cookie-consent .btn-light {
  background-color: var(--white);
  color: var(--primary-color);
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 4px;
  font-weight: 500;
}

.cookie-consent .btn-outline-light {
  background-color: transparent;
  color: var(--white);
  border: 1px solid var(--white);
  padding: 0.5rem 1.5rem;
  border-radius: 4px;
  font-weight: 500;
}

.cookie-consent .btn-outline-light:hover {
  background-color: var(--white);
  color: var(--primary-color);
}

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

  .hero-content p {
    font-size: 1rem;
  }

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

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .cookie-consent .text-right {
    text-align: left;
    margin-top: 1rem;
  }
}

@media (max-width: 767px) {
  .hero {
    height: 50vh;
    min-height: 400px;
  }

  .hero-content h1 {
    font-size: 1.75rem;
  }

  .cookie-consent .col-lg-4 {
    margin-top: 1rem;
  }
}
