:root {
  --primary-red: #c41e3a;
  --dark-red: #a01729;
  --light-red: #e8566f;
  --text-dark: #2c3e50;
  --text-light: #6c757d;
  --bg-light: #f8f9fa;
  --white: #ffffff;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-600: #6c757d;
  --gray-800: #343a40;
}

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

.main-header {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
}

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

.navbar-light .navbar-nav .nav-link {
  color: var(--text-dark);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: var(--primary-red);
}

.hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

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

.hero-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(196, 30, 58, 0.8) 0%, rgba(160, 23, 41, 0.85) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 4rem 0;
}

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

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--white);
  opacity: 0.95;
}

.page-hero {
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
  padding: 4rem 0 3rem;
  margin-bottom: 0;
}

.page-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.page-subtitle {
  font-size: 1.1rem;
  color: var(--white);
  opacity: 0.9;
}

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

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

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.section-text {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1rem;
}

img.rounded {
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cta-section {
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
  padding: 4rem 0;
  text-align: center;
}

.cta-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-text {
  font-size: 1.1rem;
  color: var(--white);
  opacity: 0.95;
  margin-bottom: 2rem;
}

.btn-cta {
  background-color: var(--white);
  color: var(--primary-red);
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.btn-cta:hover {
  background-color: var(--gray-100);
  color: var(--dark-red);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-primary {
  background-color: var(--primary-red);
  border-color: var(--primary-red);
  padding: 0.6rem 1.5rem;
  font-weight: 500;
  border-radius: 0.375rem;
  transition: all 0.3s ease;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--dark-red);
  border-color: var(--dark-red);
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(196, 30, 58, 0.3);
}

.main-footer {
  background-color: var(--gray-800);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer-heading {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--white);
}

.footer-text {
  color: var(--gray-300);
  font-size: 0.95rem;
  line-height: 1.7;
}

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

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

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

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

.footer-divider {
  border-color: rgba(255, 255, 255, 0.1);
  margin: 2rem 0 1.5rem;
}

.footer-legal {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.footer-legal li {
  margin: 0 1rem 0.5rem;
}

.footer-legal a {
  color: var(--gray-300);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--light-red);
}

.footer-copyright {
  color: var(--gray-600);
  font-size: 0.9rem;
  margin-bottom: 0;
}

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

.form-control {
  border: 1px solid var(--gray-300);
  border-radius: 0.375rem;
  padding: 0.6rem 0.75rem;
}

.form-control:focus {
  border-color: var(--primary-red);
  box-shadow: 0 0 0 0.2rem rgba(196, 30, 58, 0.15);
}

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

.contact-text {
  color: var(--text-light);
  font-size: 0.95rem;
}

.thankyou-section {
  padding: 6rem 0;
  min-height: 400px;
  display: flex;
  align-items: center;
}

.thankyou-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.thankyou-text {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}

.policy-content {
  font-size: 1rem;
  line-height: 1.8;
}

.policy-heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

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

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

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

.policy-list {
  color: var(--text-light);
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

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

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

.policy-content a:hover {
  color: var(--dark-red);
  text-decoration: underline;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
  color: var(--white);
  padding: 1rem 0;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  display: none;
}

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

.cookie-banner p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

.cookie-banner a {
  color: var(--white);
  text-decoration: underline;
}

.cookie-banner a:hover {
  color: var(--gray-200);
}

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

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .page-title {
    font-size: 2rem;
  }

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

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

  .footer-legal {
    flex-direction: column;
    align-items: center;
  }

  .footer-legal li {
    margin: 0.25rem 0;
  }
}

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

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

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

  .contact-form-wrapper {
    padding: 1.5rem;
  }
}
