:root {
  --background: 255 255 255;
  --foreground: 20 20 20;
  --card: 250 250 250;
  --card-foreground: 20 20 20;
  --primary: 139 0 0;
  --primary-foreground: 255 255 255;
  --secondary: 245 245 245;
  --secondary-foreground: 40 40 40;
  --muted: 240 240 240;
  --muted-foreground: 115 115 115;
  --accent: 178 34 34;
  --accent-foreground: 255 255 255;
  --border: 230 230 230;
  --input: 230 230 230;
  --ring: 139 0 0;
  --radius: 0.5rem;
}

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

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

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.navbar {
  background-color: rgb(var(--background));
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
}

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

.navbar-nav .nav-link {
  color: rgb(var(--foreground));
  font-weight: 500;
  padding: 0.5rem 1rem;
}

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

.hero-section {
  position: relative;
  height: 70vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, rgb(var(--muted)) 0%, rgb(var(--background)) 100%);
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 2rem;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: rgb(var(--foreground));
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgb(var(--muted-foreground));
  margin-bottom: 2rem;
}

.btn-primary {
  background-color: rgb(var(--primary));
  border-color: rgb(var(--primary));
  color: rgb(var(--primary-foreground));
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: rgb(var(--accent));
  border-color: rgb(var(--accent));
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(139, 0, 0, 0.3);
}

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

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: rgb(var(--foreground));
}

.section-subtitle {
  font-size: 1.125rem;
  color: rgb(var(--muted-foreground));
  margin-bottom: 3rem;
}

.card {
  border: 1px solid rgb(var(--border));
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: rgb(var(--card));
  height: 100%;
}

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

.card-img-top {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-body {
  padding: 1.5rem;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: rgb(var(--card-foreground));
}

.card-text {
  color: rgb(var(--muted-foreground));
}

.footer {
  background-color: rgb(var(--foreground));
  color: rgb(var(--background));
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

.footer h5 {
  font-weight: 600;
  margin-bottom: 1rem;
  color: rgb(var(--background));
}

.footer a {
  color: rgba(255, 255, 255, 0.8);
  display: block;
  margin-bottom: 0.5rem;
}

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

.testimonial-card {
  background-color: rgb(var(--card));
  border: 1px solid rgb(var(--border));
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 1.5rem;
}

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

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

.form-control {
  border: 1px solid rgb(var(--input));
  border-radius: var(--radius);
  padding: 0.75rem;
  width: 100%;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: rgb(var(--primary));
  box-shadow: 0 0 0 3px rgba(139, 0, 0, 0.1);
}

.disclaimer {
  background-color: rgb(var(--muted));
  border-left: 4px solid rgb(var(--primary));
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: var(--radius);
}

.faq-item {
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background-color: rgb(var(--card));
  border-radius: var(--radius);
  border: 1px solid rgb(var(--border));
}

.faq-question {
  font-weight: 600;
  color: rgb(var(--foreground));
  margin-bottom: 0.5rem;
}

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

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

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

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

.btn-accept {
  background-color: rgb(var(--primary));
  color: rgb(var(--primary-foreground));
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 600;
}

.btn-decline {
  background-color: transparent;
  color: rgb(var(--background));
  border: 1px solid rgb(var(--background));
  padding: 0.5rem 1.5rem;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 600;
}

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

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

  .hero-section {
    height: 60vh;
    min-height: 400px;
  }

  .cookie-buttons {
    flex-direction: column;
  }
}
