:root {
  --primary-color: #ff8c42;
  --primary-dark: #e67a2e;
  --secondary-color: #2c3e50;
  --text-dark: #1a1a1a;
  --text-light: #555555;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --border-color: #e0e0e0;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  padding-top: 70px;
}
.content-wrapper {
  min-height: calc(100vh - 350px);
}
.navbar {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
}
.navbar-brand {
  font-size: 1.5rem;
  color: var(--secondary-color);
  font-weight: 600;
}
.navbar-brand strong {
  color: var(--primary-color);
}
.nav-link {
  color: var(--text-dark);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s;
}
.nav-link:hover {
  color: var(--primary-color);
}
.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  font-weight: 600;
  padding: 0.75rem 2rem;
  transition: all 0.3s;
}
.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 140, 66, 0.3);
}
.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
  font-weight: 600;
  padding: 0.75rem 2rem;
  transition: all 0.3s;
}
.btn-outline-primary:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
}
.btn-light {
  background-color: white;
  color: var(--primary-color);
  border: none;
  font-weight: 600;
}
.btn-light:hover {
  background-color: #f0f0f0;
  color: var(--primary-dark);
}
.hero-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #fff5ee 0%, #ffffff 100%);
}
.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}
.section {
  padding: 4rem 0;
}
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}
.bg-light {
  background-color: var(--bg-light);
}
.lead {
  font-size: 1.15rem;
  color: var(--text-light);
}
.feature-card {
  padding: 2rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: transform 0.3s;
}
.feature-card:hover {
  transform: translateY(-5px);
}
.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.feature-card h3 {
  font-size: 1.5rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}
.benefit-list {
  list-style: none;
  padding: 0;
}
.benefit-list li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
}
.benefit-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.2rem;
}
.approach-card {
  padding: 2rem;
  background: white;
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  height: 100%;
}
.approach-card h3 {
  color: var(--secondary-color);
  margin-bottom: 1rem;
}
.expectation-item {
  padding: 2rem;
  background: var(--bg-light);
  border-radius: 8px;
  margin-bottom: 1.5rem;
}
.expectation-item h3 {
  color: var(--secondary-color);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.testimonial-card {
  padding: 2.5rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  height: 100%;
}
.testimonial-text {
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}
.testimonial-author {
  font-weight: 600;
  color: var(--secondary-color);
}
.concern-card {
  padding: 2rem;
  background: white;
  border-radius: 8px;
  border: 2px solid var(--border-color);
  height: 100%;
  transition: border-color 0.3s;
}
.concern-card:hover {
  border-color: var(--primary-color);
}
.concern-card h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}
.why-card {
  padding: 2rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  height: 100%;
}
.why-card h4 {
  color: var(--secondary-color);
  margin-bottom: 1rem;
}
.cta-section {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  padding: 5rem 0;
}
.page-header {
  background: linear-gradient(135deg, var(--secondary-color), #1a2a3a);
  color: white;
  padding: 3rem 0;
  margin-bottom: 3rem;
}
.page-header h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.value-card {
  padding: 2rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  height: 100%;
}
.value-card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}
.difference-card {
  padding: 2rem;
  background: var(--bg-light);
  border-radius: 8px;
  height: 100%;
}
.difference-card h4 {
  color: var(--secondary-color);
  margin-bottom: 1rem;
}
.approach-detail {
  padding: 2rem;
  background: white;
  border-radius: 8px;
  margin-bottom: 2rem;
  border-left: 4px solid var(--primary-color);
}
.approach-detail h4 {
  color: var(--secondary-color);
  margin-bottom: 1rem;
}
.info-box {
  padding: 2.5rem;
  background: #fff9f5;
  border: 2px solid var(--primary-color);
  border-radius: 8px;
}
.info-box h4 {
  color: var(--secondary-color);
  margin-bottom: 1rem;
}
.service-detail {
  margin-bottom: 4rem;
}
.service-detail h2 {
  color: var(--secondary-color);
  font-size: 2rem;
  margin-bottom: 1rem;
}
.service-list {
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
}
.service-list li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
}
.service-list li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 700;
}
.format-card {
  padding: 2.5rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  height: 100%;
}
.format-card h3 {
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
}
.support-card {
  padding: 2rem;
  background: var(--bg-light);
  border-radius: 8px;
  margin-bottom: 1.5rem;
}
.support-card h4 {
  color: var(--secondary-color);
  margin-bottom: 1rem;
}
.benefit-card {
  padding: 2rem;
  background: white;
  border-radius: 8px;
  border: 2px solid var(--border-color);
  height: 100%;
  transition: all 0.3s;
}
.benefit-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 4px 15px rgba(255, 140, 66, 0.15);
}
.benefit-card h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}
.disclaimer-box {
  padding: 2.5rem;
  background: #fff9f5;
  border: 2px solid var(--primary-color);
  border-radius: 8px;
  margin-bottom: 2rem;
}
.disclaimer-box h4 {
  color: var(--secondary-color);
  margin-bottom: 1rem;
}
.contact-info-item {
  margin-bottom: 2rem;
}
.contact-info-item h5 {
  color: var(--secondary-color);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.contact-info-item p {
  color: var(--text-light);
}
.contact-info-item a {
  color: var(--primary-color);
  text-decoration: none;
}
.contact-info-item a:hover {
  color: var(--primary-dark);
}
.contact-form {
  background: white;
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}
.required {
  color: var(--primary-color);
}
.form-control {
  border: 2px solid var(--border-color);
  border-radius: 4px;
  padding: 0.75rem;
  transition: border-color 0.3s;
}
.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(255, 140, 66, 0.15);
}
.custom-control-label {
  font-weight: normal;
  color: var(--text-light);
}
.faq-item {
  padding: 2rem;
  background: white;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.faq-item h5 {
  color: var(--secondary-color);
  margin-bottom: 1rem;
}
.thank-you-section {
  padding: 5rem 0;
}
.thank-you-icon {
  width: 100px;
  height: 100px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin: 0 auto 2rem;
}
.policy-content {
  font-size: 1rem;
  line-height: 1.8;
}
.policy-content h2 {
  color: var(--secondary-color);
  font-size: 1.75rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}
.policy-content h3 {
  color: var(--secondary-color);
  font-size: 1.4rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}
.policy-content h4 {
  color: var(--secondary-color);
  font-size: 1.2rem;
  margin-top: 1.25rem;
  margin-bottom: 0.75rem;
}
.policy-content ul {
  margin-bottom: 1.5rem;
}
.policy-content a {
  color: var(--primary-color);
  text-decoration: none;
}
.policy-content a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}
.policy-sidebar {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 8px;
  position: sticky;
  top: 90px;
}
.policy-sidebar h5 {
  color: var(--secondary-color);
  margin-bottom: 1rem;
}
.policy-links {
  list-style: none;
  padding: 0;
}
.policy-links li {
  margin-bottom: 0.75rem;
}
.policy-links a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s;
}
.policy-links a:hover {
  color: var(--primary-color);
}
.alert {
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
}
.alert-warning {
  background-color: #fff9f5;
  border: 2px solid var(--primary-color);
  color: var(--text-dark);
}
.table {
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}
.table thead th {
  background-color: var(--secondary-color);
  color: white;
  border: none;
}
.table-bordered {
  border: 2px solid var(--border-color);
}
.footer {
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
}
.footer h5 {
  color: white;
  margin-bottom: 1.5rem;
  font-weight: 700;
}
.footer p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
}
.footer a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s;
}
.footer a:hover {
  color: var(--primary-color);
}
.footer-links {
  list-style: none;
  padding: 0;
}
.footer-links li {
  margin-bottom: 0.75rem;
}
.footer-divider {
  border-color: rgba(255, 255, 255, 0.2);
  margin: 2rem 0 1.5rem;
}
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.15);
  padding: 1.5rem 0;
  z-index: 9999;
}
.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.cookie-content p {
  margin: 0;
  flex: 1;
  padding-right: 2rem;
  color: var(--text-dark);
}
.cookie-content a {
  color: var(--primary-color);
  text-decoration: none;
}
.cookie-content a:hover {
  text-decoration: underline;
}
.cookie-buttons {
  display: flex;
  gap: 1rem;
}
.cookie-buttons .btn {
  white-space: nowrap;
}
@media (max-width: 991px) {
  .hero-title {
    font-size: 2.25rem;
  }
  .section-title {
    font-size: 2rem;
  }
  .page-header h1 {
    font-size: 2.25rem;
  }
}
@media (max-width: 768px) {
  .hero-section {
    padding: 3rem 0;
  }
  .hero-title {
    font-size: 1.75rem;
  }
  .section {
    padding: 3rem 0;
  }
  .section-title {
    font-size: 1.75rem;
  }
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  .cookie-content p {
    padding-right: 0;
    margin-bottom: 1rem;
  }
  .cookie-buttons {
    justify-content: center;
  }
}
