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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #2c3e50;
  line-height: 1.6;
  overflow-x: hidden;
}

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

.logo {
  height: 40px;
  width: auto;
}

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

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

.nav-link:hover {
  color: #ff6b35;
}

.btn-primary {
  background-color: #ff6b35;
  border-color: #ff6b35;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
  border-radius: 50px;
}

.btn-primary:hover {
  background-color: #e55a2b;
  border-color: #e55a2b;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

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

.btn-outline-primary:hover {
  background-color: #ff6b35;
  border-color: #ff6b35;
  color: #fff;
}

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

.btn-light:hover {
  background-color: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hero-section {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.9) 0%, rgba(255, 107, 53, 0.7) 100%);
  display: flex;
  align-items: center;
}

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

.hero-subtitle {
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 2rem;
  opacity: 0.95;
}

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

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

.section-subtitle {
  font-size: 1.125rem;
  color: #7f8c8d;
  margin-bottom: 2rem;
}

.section-text {
  font-size: 1.125rem;
  color: #555;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

.card-body {
  padding: 2rem;
}

.card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.card-text {
  color: #555;
  line-height: 1.8;
}

.disclaimer-box {
  background: linear-gradient(135deg, #fff5f1 0%, #ffe8df 100%);
  border-left: 5px solid #ff6b35;
  padding: 2.5rem;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(255, 107, 53, 0.1);
}

.disclaimer-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #ff6b35;
  margin-bottom: 1.5rem;
}

.testimonial-card {
  background: #fff;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

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

.testimonial-text {
  font-size: 1.125rem;
  font-style: italic;
  color: #555;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.testimonial-author {
  font-weight: 600;
  color: #ff6b35;
}

.accordion-item {
  border: none;
  margin-bottom: 1rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.accordion-button {
  background: #fff;
  color: #2c3e50;
  font-weight: 600;
  font-size: 1.125rem;
  padding: 1.5rem;
  border: none;
}

.accordion-button:not(.collapsed) {
  background-color: #ff6b35;
  color: #fff;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-body {
  padding: 1.5rem;
  color: #555;
  line-height: 1.8;
}

.cta-section {
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
  padding: 5rem 0;
  color: #fff;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.cta-text {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.page-header {
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
  padding: 5rem 0 3rem;
  color: #fff;
}

.page-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.page-subtitle {
  font-size: 1.25rem;
  opacity: 0.95;
}

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

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

.icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
}

.value-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.value-text {
  color: #555;
  line-height: 1.8;
}

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

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

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

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

.contact-form label {
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.contact-form .form-control {
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: #ff6b35;
  box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.15);
}

.contact-info-box {
  background: #f8f9fa;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-info-item {
  margin-bottom: 2rem;
}

.contact-info-item h5 {
  font-weight: 700;
  color: #ff6b35;
  margin-bottom: 0.5rem;
}

.contact-info-item p,
.contact-info-item a {
  color: #555;
  margin-bottom: 0;
}

.contact-info-item a {
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info-item a:hover {
  color: #ff6b35;
}

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

.thank-you-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 2rem;
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.thank-you-title {
  font-size: 3rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1.5rem;
}

.thank-you-text {
  font-size: 1.25rem;
  color: #555;
  margin-bottom: 1rem;
  line-height: 1.8;
}

.thank-you-subtext {
  font-size: 1.125rem;
  color: #7f8c8d;
}

.legal-content {
  font-size: 1rem;
  color: #555;
  line-height: 1.8;
}

.legal-content h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #2c3e50;
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
}

.legal-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

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

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

.legal-content p {
  margin-bottom: 1.5rem;
}

.legal-content a {
  color: #ff6b35;
  text-decoration: none;
  font-weight: 600;
}

.legal-content a:hover {
  text-decoration: underline;
}

.disclaimer-emphasis {
  font-size: 1.0625rem;
}

.disclaimer-emphasis strong {
  color: #ff6b35;
  font-weight: 700;
}

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

.footer {
  background: #2c3e50;
  color: #ecf0f1;
  padding: 4rem 0 2rem;
}

.footer-logo {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-text {
  color: #bdc3c7;
  margin-top: 1rem;
  line-height: 1.8;
}

.footer-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #fff;
}

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

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

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

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

.footer-contact {
  color: #bdc3c7;
  line-height: 1.8;
}

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

.footer-contact a:hover {
  color: #ff6b35;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: #95a5a6;
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.15);
  padding: 1.5rem;
  z-index: 9999;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.cookie-content p {
  margin: 0;
  margin-right: 2rem;
  color: #555;
  flex: 1;
  min-width: 300px;
  margin-bottom: 1rem;
}

.cookie-content a {
  color: #ff6b35;
  text-decoration: none;
  font-weight: 600;
}

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

.cookie-buttons .btn {
  white-space: nowrap;
}

.cookie-settings {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 15px;
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  z-index: 10000;
  max-width: 500px;
  width: 90%;
}

.cookie-settings h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1.5rem;
}

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

.cookie-category:last-of-type {
  border-bottom: none;
}

.cookie-category label {
  display: block;
  cursor: pointer;
}

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

.cookie-category strong {
  display: block;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.cookie-category p {
  margin: 0;
  color: #7f8c8d;
  font-size: 0.9375rem;
  margin-left: 1.75rem;
}

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

.cookie-settings-buttons .btn {
  flex: 1;
}

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

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

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

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

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

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

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

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

  .cookie-content p {
    margin-right: 0;
    margin-bottom: 1rem;
  }

  .cookie-buttons {
    width: 100%;
  }

  .cookie-buttons .btn {
    flex: 1;
  }
}
