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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.3;
  color: #1a1a1a;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1.1rem;
}

p {
  margin-bottom: 1rem;
}

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

a:hover {
  color: #e65a2b;
  text-decoration: none;
}

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

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

.brand-name {
  color: #1a1a1a;
}

.navbar-light .navbar-nav .nav-link {
  color: #1a1a1a;
  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: #ff6b35;
}

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

.btn-orange:hover {
  background-color: #e65a2b;
  border-color: #e65a2b;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(255, 107, 53, 0.3);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid #1a1a1a;
  color: #1a1a1a;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background-color: #1a1a1a;
  color: #ffffff;
}

.hero-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #1a1a1a;
}

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

.section-white {
  padding: 5rem 0;
  background-color: #ffffff;
}

.section-grey {
  padding: 5rem 0;
  background-color: #f8f9fa;
}

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

.section-intro {
  font-size: 1.1rem;
  color: #495057;
  margin-bottom: 3rem;
}

.page-header {
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c5a 100%);
  color: #ffffff;
  padding: 4rem 0;
  text-align: center;
}

.page-header h1 {
  color: #ffffff;
  font-size: 3rem;
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1.25rem;
  color: #ffffff;
  opacity: 0.95;
}

.reason-card,
.value-card,
.approach-card,
.expectation-card,
.concern-card {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.reason-card h4,
.value-card h4,
.approach-card h4,
.expectation-card h4,
.concern-card h5 {
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.benefit-item,
.why-item {
  margin-bottom: 2rem;
}

.benefit-item h4,
.benefit-item h5,
.why-item h5 {
  color: #1a1a1a;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.benefit-item p,
.why-item p {
  color: #495057;
  margin-bottom: 0;
}

.testimonial-card {
  background-color: #f8f9fa;
  padding: 2rem;
  border-radius: 8px;
  border-left: 4px solid #ff6b35;
  height: 100%;
}

.testimonial-text {
  font-style: italic;
  color: #495057;
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.testimonial-author {
  color: #1a1a1a;
  font-weight: 600;
  margin-bottom: 0;
}

.service-card {
  background-color: #ffffff;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  padding: 2rem;
  height: 100%;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card h3 {
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.service-includes {
  margin: 1.5rem 0;
}

.service-includes h5 {
  color: #1a1a1a;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.service-includes ul {
  list-style: none;
  padding-left: 0;
}

.service-includes li {
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  position: relative;
  color: #495057;
}

.service-includes li:before {
  content: "✓";
  color: #ff6b35;
  font-weight: 700;
  position: absolute;
  left: 0;
}

.additional-service {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  border: 2px solid #e9ecef;
  height: 100%;
}

.additional-service h4 {
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.process-step {
  text-align: center;
}

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

.process-step h5 {
  color: #1a1a1a;
  margin-bottom: 0.75rem;
}

.faq-item {
  background-color: #ffffff;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid #ff6b35;
}

.faq-item h5 {
  color: #1a1a1a;
  margin-bottom: 0.75rem;
}

.approach-detail {
  padding: 1.5rem;
  background-color: #f8f9fa;
  border-radius: 8px;
  height: 100%;
}

.approach-detail h4 {
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.difference-list,
.benefit-list,
.why-list {
  list-style: none;
  padding-left: 0;
}

.difference-list li,
.benefit-list li,
.why-list li {
  padding-left: 2rem;
  margin-bottom: 0.75rem;
  position: relative;
  color: #495057;
}

.difference-list li:before,
.benefit-list li:before,
.why-list li:before {
  content: "•";
  color: #ff6b35;
  font-size: 1.5rem;
  position: absolute;
  left: 0.5rem;
  top: -0.2rem;
}

.commitment-box {
  background-color: #f8f9fa;
  padding: 3rem;
  border-radius: 8px;
  border: 2px solid #ff6b35;
}

.commitment-box p {
  color: #495057;
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.commitment-box p:last-child {
  margin-bottom: 0;
}

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

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

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

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

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

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-item h5 {
  color: #1a1a1a;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact-item p {
  color: #495057;
  margin-bottom: 0;
}

.form-control {
  border: 2px solid #e9ecef;
  border-radius: 4px;
  padding: 0.75rem;
  transition: border-color 0.3s ease;
}

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

.form-group label {
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.form-check-label {
  font-weight: 400;
  color: #495057;
}

.thank-you-section {
  padding: 5rem 0;
  background-color: #f8f9fa;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.thank-you-content {
  max-width: 800px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 4rem;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.thank-you-icon {
  width: 100px;
  height: 100px;
  background-color: #28a745;
  color: #ffffff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin-bottom: 2rem;
}

.thank-you-title {
  color: #1a1a1a;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.thank-you-message {
  font-size: 1.25rem;
  color: #495057;
  margin-bottom: 1rem;
}

.thank-you-next {
  margin: 3rem 0;
}

.thank-you-next h3 {
  color: #1a1a1a;
  margin-bottom: 2rem;
}

.next-step {
  background-color: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
}

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

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

.legal-content {
  max-width: 900px;
  margin: 0 auto;
}

.legal-content h2 {
  color: #1a1a1a;
  font-size: 1.75rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.legal-content h3 {
  color: #1a1a1a;
  font-size: 1.5rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.legal-content p {
  color: #495057;
  margin-bottom: 1rem;
}

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

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

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

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

.footer-brand {
  font-size: 1.25rem;
}

.footer p {
  color: #adb5bd;
}

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

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

.footer-links a {
  color: #adb5bd;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  border-top: 1px solid #495057;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-bottom p {
  color: #adb5bd;
  margin-bottom: 0;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-legal a {
  color: #adb5bd;
  font-size: 0.9rem;
}

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

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

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

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

.cookie-content p {
  color: #ffffff;
  margin: 0;
  flex: 1;
  min-width: 250px;
}

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

.cookie-link {
  color: #ff6b35;
  font-size: 0.9rem;
}

.cookie-link:hover {
  color: #e65a2b;
}

@media (max-width: 991px) {
  .hero-title {
    font-size: 2.25rem;
  }
  .section-title {
    font-size: 2rem;
  }
  .navbar-collapse {
    background-color: #ffffff;
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .footer-legal {
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .hero-section {
    padding: 3rem 0;
  }
  .hero-title {
    font-size: 1.75rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .section-white,
  .section-grey {
    padding: 3rem 0;
  }
  .section-title {
    font-size: 1.75rem;
  }
  .page-header {
    padding: 3rem 0;
  }
  .page-header h1 {
    font-size: 2rem;
  }
  .cta-section {
    padding: 3rem 0;
  }
  .cta-title {
    font-size: 1.75rem;
  }
  .cta-text {
    font-size: 1rem;
  }
  .thank-you-content {
    padding: 2rem;
  }
  .thank-you-title {
    font-size: 2rem;
  }
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }
  .cookie-buttons {
    flex-direction: column;
  }
  .thank-you-actions {
    flex-direction: column;
  }
}

img {
  max-width: 100%;
  height: auto;
}

.rounded {
  border-radius: 8px;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}
