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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #2c2c2c;
  background-color: #ffffff;
}

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

.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
}

.brand-text {
  color: #ff7f3e;
  font-weight: 700;
}

.nav-link {
  color: #2c2c2c;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #ff7f3e;
}

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

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

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 127, 62, 0.7) 0%, rgba(44, 44, 44, 0.7) 100%);
}

.hero-content {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 2;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #ffffff;
  margin-bottom: 2rem;
  line-height: 1.5;
}

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

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 1.5rem;
}

.section-text {
  font-size: 1.125rem;
  color: #5a5a5a;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.btn-primary {
  background-color: #ff7f3e;
  border-color: #ff7f3e;
  color: #ffffff;
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #e66a29;
  border-color: #e66a29;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 127, 62, 0.3);
}

.btn-outline-primary {
  border-color: #ff7f3e;
  color: #ff7f3e;
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background-color: #ff7f3e;
  border-color: #ff7f3e;
  color: #ffffff;
  transform: translateY(-2px);
}

.bg-light {
  background-color: #f8f9fa !important;
}

.bg-accent {
  background-color: #ff7f3e;
}

.feature-card {
  padding: 2rem;
  background: #ffffff;
  border-radius: 8px;
  transition: all 0.3s ease;
  height: 100%;
}

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

.feature-icon {
  margin-bottom: 1.5rem;
}

.icon-circle {
  width: 60px;
  height: 60px;
  background-color: #ff7f3e;
  color: #ffffff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 1rem;
}

.feature-text {
  font-size: 1rem;
  color: #5a5a5a;
  line-height: 1.6;
}

.service-card {
  padding: 2rem;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  height: 100%;
  transition: all 0.3s ease;
}

.service-card:hover {
  border-color: #ff7f3e;
  box-shadow: 0 4px 16px rgba(255, 127, 62, 0.1);
}

.service-number {
  font-size: 2rem;
  font-weight: 700;
  color: #ff7f3e;
  margin-bottom: 1rem;
}

.service-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 1rem;
}

.service-text {
  font-size: 1rem;
  color: #5a5a5a;
  line-height: 1.6;
}

.benefits-list {
  list-style: none;
  padding: 0;
}

.benefits-list li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  font-size: 1.125rem;
  color: #2c2c2c;
}

.benefits-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ff7f3e;
  font-weight: 700;
  font-size: 1.25rem;
}

.step-card {
  text-align: center;
  padding: 2rem 1rem;
}

.step-number {
  width: 50px;
  height: 50px;
  background-color: #ff7f3e;
  color: #ffffff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.step-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 0.75rem;
}

.step-text {
  font-size: 0.9375rem;
  color: #5a5a5a;
  line-height: 1.6;
}

.why-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  height: 100%;
}

.why-card h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 1rem;
}

.why-card p {
  font-size: 1rem;
  color: #5a5a5a;
  line-height: 1.6;
}

.faq-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid #e5e5e5;
}

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

.faq-question {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 0.75rem;
}

.faq-answer {
  font-size: 1rem;
  color: #5a5a5a;
  line-height: 1.6;
}

.cta-section {
  background: linear-gradient(135deg, #ff7f3e 0%, #e66a29 100%);
  padding: 5rem 0;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.cta-text {
  font-size: 1.25rem;
  color: #ffffff;
  margin-bottom: 2rem;
}

.btn-light {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #ff7f3e;
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn-light:hover {
  background-color: #f8f9fa;
  border-color: #f8f9fa;
  color: #e66a29;
  transform: translateY(-2px);
}

.footer {
  background-color: #2c2c2c;
  color: #ffffff;
  padding: 3rem 0 1rem;
}

.footer-heading {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.footer-text {
  font-size: 0.9375rem;
  color: #b8b8b8;
  line-height: 1.6;
}

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

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

.footer-links a {
  color: #b8b8b8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ff7f3e;
}

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

.footer-contact li {
  margin-bottom: 0.75rem;
  font-size: 0.9375rem;
  color: #b8b8b8;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #444444;
  text-align: center;
  color: #b8b8b8;
  font-size: 0.875rem;
}

.page-header {
  background-color: #f8f9fa;
  padding: 4rem 0 3rem;
}

.page-title {
  font-size: 3rem;
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 0.5rem;
}

.page-subtitle {
  font-size: 1.125rem;
  color: #5a5a5a;
}

.principle-card {
  padding: 2rem;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  height: 100%;
}

.principle-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 1rem;
}

.principle-text {
  font-size: 1rem;
  color: #5a5a5a;
  line-height: 1.6;
}

.focus-card {
  padding: 2rem;
  background: #f8f9fa;
  border-radius: 8px;
  height: 100%;
}

.focus-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 1rem;
}

.focus-text {
  font-size: 1rem;
  color: #5a5a5a;
  line-height: 1.6;
}

.contact-form-wrapper {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 8px;
}

.form-control {
  padding: 0.75rem;
  font-size: 1rem;
  border: 1px solid #d1d5db;
  border-radius: 4px;
}

.form-control:focus {
  border-color: #ff7f3e;
  box-shadow: 0 0 0 0.2rem rgba(255, 127, 62, 0.25);
}

.contact-info-box {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 8px;
}

.contact-item {
  margin-bottom: 1.5rem;
}

.contact-item strong {
  display: block;
  color: #2c2c2c;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact-item p {
  color: #5a5a5a;
  margin: 0;
}

.contact-hours {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid #e5e5e5;
}

.contact-hours h5 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 1rem;
}

.next-steps {
  margin-top: 2rem;
}

.next-step-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.next-step-number {
  width: 40px;
  height: 40px;
  background-color: #ff7f3e;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
  margin-right: 1.5rem;
}

.next-step-content h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 0.5rem;
}

.next-step-content p {
  font-size: 1rem;
  color: #5a5a5a;
  line-height: 1.6;
  margin: 0;
}

.thank-you-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 5rem 0;
}

.thank-you-content {
  background: #f8f9fa;
  padding: 3rem;
  border-radius: 8px;
}

.thank-you-icon {
  margin-bottom: 2rem;
}

.thank-you-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 1rem;
}

.thank-you-text {
  font-size: 1.125rem;
  color: #5a5a5a;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.next-steps-list {
  list-style: none;
  padding: 0;
  text-align: left;
  display: inline-block;
}

.next-steps-list li {
  padding: 0.5rem 0;
  padding-left: 2rem;
  position: relative;
  font-size: 1rem;
  color: #2c2c2c;
}

.next-steps-list li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: #ff7f3e;
  font-weight: 700;
}

.thank-you-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.policy-content h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #2c2c2c;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.policy-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2c2c2c;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.policy-content h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2c2c2c;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.policy-content p {
  font-size: 1rem;
  color: #5a5a5a;
  line-height: 1.7;
  margin-bottom: 1rem;
}

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

.policy-content ul li {
  font-size: 1rem;
  color: #5a5a5a;
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.contact-details {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  margin: 1.5rem 0;
}

.cookie-table {
  margin: 1.5rem 0;
}

.cookie-table table {
  font-size: 0.9375rem;
}

.cookie-table th {
  background-color: #f8f9fa;
  font-weight: 600;
  color: #2c2c2c;
}

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

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

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  margin: 0;
  font-size: 0.9375rem;
  color: #ffffff;
}

.cookie-text a {
  color: #ff7f3e;
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.cookie-settings-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.cookie-settings-modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-modal-content {
  background-color: #ffffff;
  border-radius: 8px;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
}

.cookie-modal-header {
  padding: 1.5rem;
  border-bottom: 1px solid #e5e5e5;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie-modal-header h3 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
  color: #2c2c2c;
}

.cookie-modal-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: #5a5a5a;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-modal-close:hover {
  color: #2c2c2c;
}

.cookie-modal-body {
  padding: 1.5rem;
}

.cookie-option {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e5e5e5;
}

.cookie-option:last-child {
  border-bottom: none;
}

.cookie-option label {
  display: flex;
  align-items: center;
  font-weight: 600;
  color: #2c2c2c;
  cursor: pointer;
  margin-bottom: 0.5rem;
}

.cookie-option input[type="checkbox"] {
  margin-right: 0.75rem;
  width: 18px;
  height: 18px;
}

.cookie-option-desc {
  font-size: 0.9375rem;
  color: #5a5a5a;
  margin-left: 1.75rem;
  margin-bottom: 0;
}

.cookie-modal-footer {
  padding: 1.5rem;
  border-top: 1px solid #e5e5e5;
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}

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

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

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

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

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

  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-buttons .btn {
    width: 100%;
  }

  .thank-you-actions {
    flex-direction: column;
  }

  .thank-you-actions .btn {
    width: 100%;
    margin-right: 0 !important;
  }
}

@media (max-width: 576px) {
  .section-padding {
    padding: 3rem 0;
  }

  .hero-section {
    height: 400px;
  }

  .btn-lg {
    padding: 0.625rem 1.5rem;
    font-size: 1rem;
  }
}
