:root {
  --primary-color: #c84c4c;
  --primary-dark: #a83e3e;
  --secondary-color: #e8675c;
  --background-light: #faf8f6;
  --background-white: #ffffff;
  --text-dark: #2c2c2c;
  --text-medium: #5a5a5a;
  --text-light: #8a8a8a;
  --border-color: #e5e5e5;
}

* {
  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);
  background-color: var(--background-white);
  line-height: 1.6;
  font-size: 16px;
}

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-medium);
}

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-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--background-white);
  padding: 0.75rem 2rem;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s ease;
}

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

.btn-secondary {
  background-color: var(--text-medium);
  border-color: var(--text-medium);
  color: var(--background-white);
  padding: 0.75rem 2rem;
  font-weight: 500;
  border-radius: 8px;
}

.site-header {
  background-color: var(--background-white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 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-medium);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

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

.hero-section {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--background-light) 0%, var(--background-white) 100%);
  padding: 4rem 0;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
}

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

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-medium);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-image {
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  height: 100%;
  opacity: 0.15;
}

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

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

.page-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--background-white);
  padding: 4rem 0;
  text-align: center;
}

.page-header h1 {
  color: var(--background-white);
  margin-bottom: 1rem;
}

.page-header .lead {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
}

.image-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.image-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.image-grid-2 img,
.image-grid-3 img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.rounded {
  border-radius: 12px;
}

.info-box {
  background-color: var(--background-light);
  border-left: 4px solid var(--primary-color);
  padding: 2rem;
  border-radius: 8px;
  margin: 2rem 0;
}

.info-box h2,
.info-box h3 {
  margin-top: 0;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--background-light);
  padding: 2rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

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

.faq-item p {
  margin-bottom: 0;
}

.cta-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--background-white);
  padding: 5rem 0;
  text-align: center;
}

.cta-section h2 {
  color: var(--background-white);
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.cta-section .btn-primary {
  background-color: var(--background-white);
  color: var(--primary-color);
  border-color: var(--background-white);
}

.cta-section .btn-primary:hover {
  background-color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.9);
}

.contact-info-box {
  background-color: var(--background-light);
  padding: 2rem;
  border-radius: 12px;
}

.contact-info-card {
  background-color: var(--background-white);
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  border: 1px solid var(--border-color);
}

.contact-info-card h3 {
  color: var(--primary-color);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.contact-form .form-group {
  margin-bottom: 1.5rem;
}

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

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

.contact-form .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(200, 76, 76, 0.25);
}

.thank-you-content {
  padding: 5rem 2rem;
}

.thank-you-content h1 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.policy-content h2 {
  color: var(--primary-color);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

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

.policy-content ul {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.policy-content ul li {
  margin-bottom: 0.5rem;
  color: var(--text-medium);
}

.styled-list {
  list-style: none;
  padding-left: 0;
}

.styled-list li {
  padding-left: 2rem;
  position: relative;
  margin-bottom: 0.75rem;
}

.styled-list li:before {
  content: "•";
  color: var(--primary-color);
  font-size: 1.5rem;
  position: absolute;
  left: 0.5rem;
  top: -0.25rem;
}

.alert {
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.alert-warning {
  background-color: #fff3cd;
  border: 1px solid #ffecb5;
  color: #856404;
}

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

.site-footer h3 {
  color: var(--background-white);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.8);
}

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

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

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

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.disclaimer-text {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--text-dark);
  color: var(--background-white);
  padding: 2rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  z-index: 9999;
}

.cookie-consent-content {
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-consent p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
}

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

.cookie-consent-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-preferences-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.cookie-preferences-content {
  background-color: var(--background-white);
  padding: 3rem;
  border-radius: 12px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-category {
  padding: 1.5rem;
  background-color: var(--background-light);
  border-radius: 8px;
  margin-bottom: 1rem;
}

.cookie-category label {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  margin-bottom: 0.5rem;
}

.cookie-category input[type="checkbox"] {
  margin-right: 1rem;
  margin-top: 0.25rem;
}

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

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

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

  .hero-image {
    opacity: 0.08;
  }

  .image-grid-3 {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 767px) {
  .hero-section {
    min-height: 400px;
    padding: 3rem 0;
  }

  .image-grid-2 {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.75rem;
  }

  .cookie-consent {
    padding: 1.5rem;
  }

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

  .cookie-consent-buttons button {
    width: 100%;
  }
}
