:root {
  --primary-color: #d32f2f;
  --primary-dark: #b71c1c;
  --primary-light: #ef5350;
  --text-dark: #212121;
  --text-medium: #424242;
  --text-light: #757575;
  --bg-light: #fafafa;
  --bg-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;
}

.navbar {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
  max-height: 50px;
}

.nav-link {
  color: var(--text-medium);
  font-weight: 500;
  transition: color 0.3s ease;
}

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

.hero-section {
  position: relative;
  height: 600px;
  overflow: hidden;
}

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

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

.hero-overlay h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-overlay .lead {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

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

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(211, 47, 47, 0.3);
}

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

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

.card {
  border: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-img-top {
  height: 250px;
  object-fit: cover;
}

.card h3,
.card h4 {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.product-card {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  border-radius: 8px;
  height: 200px;
  object-fit: cover;
}

.product-card h4 {
  margin-top: 1rem;
  color: var(--text-dark);
  font-weight: 600;
}

.needs-card {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.needs-card img {
  border-radius: 8px;
  height: 200px;
  object-fit: cover;
  width: 100%;
}

.needs-card h3 {
  color: var(--text-dark);
  margin-top: 1rem;
  font-weight: 600;
}

.package-card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
  height: 100%;
}

.package-card:hover {
  transform: translateY(-5px);
}

.package-card.featured {
  border: 2px solid var(--primary-color);
  box-shadow: 0 4px 16px rgba(211, 47, 47, 0.2);
}

.package-header {
  background: var(--bg-light);
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
}

.package-header h3 {
  margin: 0;
  color: var(--text-dark);
  font-weight: 600;
}

.package-header .badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.package-body {
  padding: 2rem 1.5rem;
}

.package-body ul {
  margin-bottom: 2rem;
}

.package-body ul li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.package-body ul li:last-child {
  border-bottom: none;
}

.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  height: 100%;
}

.testimonial-card img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  margin: 0 auto;
}

.testimonial-card h5 {
  margin-top: 1rem;
  color: var(--text-dark);
  font-weight: 600;
}

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

.faq-item h3 {
  color: var(--primary-color);
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.cta-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: white;
}

.cta-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.page-header {
  background: var(--bg-light);
  border-bottom: 3px solid var(--primary-color);
}

.page-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
}

.value-card,
.principle-item {
  margin-bottom: 2rem;
}

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

.value-card h3,
.principle-item h3 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.contact-form-wrapper {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contact-info {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 8px;
}

.contact-info h3 {
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 1rem;
}

.location-info {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.location-info img {
  max-height: 400px;
  object-fit: cover;
  width: 100%;
}

.policy-content {
  background: white;
  padding: 3rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.policy-content h2 {
  color: var(--primary-color);
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.policy-content h2:first-child {
  margin-top: 0;
}

.policy-content h3 {
  color: var(--text-dark);
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.policy-content ul {
  margin-bottom: 1rem;
}

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

footer {
  margin-top: 4rem;
}

footer h5 {
  font-weight: 600;
  margin-bottom: 1rem;
}

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

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

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

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

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

.cookie-banner a {
  color: white;
}

@media (max-width: 768px) {
  .hero-section {
    height: 400px;
  }

  .hero-overlay h1 {
    font-size: 2rem;
  }

  .hero-overlay .lead {
    font-size: 1rem;
  }

  .package-body ul {
    font-size: 0.9rem;
  }

  .policy-content {
    padding: 1.5rem;
  }

  .page-header h1 {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .btn-lg {
    padding: 0.5rem 1rem;
    font-size: 1rem;
  }

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