.elementor-widget-section .eael-protected-content-message{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-widget-section .protected-content-error-msg{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-5000 .elementor-element.elementor-element-559154a > .elementor-container{max-width:1600px;}.elementor-5000 .elementor-element.elementor-element-559154a{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-5000 .elementor-element.elementor-element-559154a > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-widget-html .eael-protected-content-message{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-widget-html .protected-content-error-msg{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-5000 .elementor-element.elementor-element-69c81ea{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-5000 .elementor-element.elementor-element-69c81ea > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-5000 .elementor-element.elementor-element-0aae298{margin-top:-87px;margin-bottom:0px;}.elementor-5000 .elementor-element.elementor-element-ddb0eb4{margin-top:-87px;margin-bottom:0px;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-d2deb74 */.financing-calculator {
  text-align: center;
  padding: 80px 20px;
  background: #f9f9f9;
}

.financing-calculator .section-title {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  color: #111;
  margin-bottom: 10px;
}

.financing-calculator .section-subtext {
  font-family: 'Saira', sans-serif;
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
}

.calculator-box {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
  max-width: 500px;
  margin: 0 auto;
  text-align: left;
}

.calculator-box label {
  font-family: 'Saira', sans-serif;
  display: block;
  margin-top: 15px;
  font-weight: 600;
  color: #333;
}

.calculator-box input,
.calculator-box select {
  width: 100%;
  padding: 10px 15px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-family: 'Saira', sans-serif;
}

.calc-btn {
  display: block;
  width: 100%;
  background: #d82128;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  padding: 12px;
  margin-top: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.calc-btn:hover {
  background: #fff;
  color: #d82128;
  border: 2px solid #d82128;
}

.result-box {
  margin-top: 20px;
  text-align: center;
  font-family: 'Saira', sans-serif;
}

.result-box .calc-result {
  background: #f3f3f3;
  padding: 15px;
  border-radius: 8px;
}

.result-box p {
  margin: 8px 0;
}

.apply-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background: #d82128;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.apply-btn:hover {
  background: #fff;
  color: #d82128;
  border: 2px solid #d82128;
}

.disclaimer {
  margin-top: 25px;
  font-size: 14px;
  color: #777;
  font-family: 'Saira', sans-serif;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-1b97561 */.financing-faq {
  padding: 80px 20px;
  background: #fff;
  text-align: center;
}

.financing-faq .section-title {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
}

.financing-faq .section-subtext {
  font-family: 'Saira', sans-serif;
  color: #555;
  font-size: 16px;
  margin-bottom: 40px;
}

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

.faq-item {
  border-bottom: 1px solid #ddd;
  padding: 15px 0;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #111;
  text-align: left;
  cursor: pointer;
  padding: 10px 10px 10px 35px; /* add space for icon */
  position: relative;
  transition: all 0.3s ease;
}

.faq-question::before {
  content: '+';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: #d82128;
  transition: transform 0.3s ease, content 0.3s ease;
}

.faq-item.active .faq-question::before {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
  display: none;
  font-family: 'Saira', sans-serif;
  font-size: 15px;
  color: #444;
  padding: 10px 15px;
  background: #f9f9f9;
  border-radius: 8px;
  margin-top: 10px;
}

.faq-item.active .faq-answer {
  display: block;
  animation: fadeIn 0.3s ease;
}

.faq-answer a {
  color: #d82128;
  text-decoration: none;
  font-weight: 600;
}

.faq-answer a:hover {
  text-decoration: underline;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-69172e8 */.financing-cta {
  background: linear-gradient(to right, #111, #550000);
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.financing-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.financing-cta p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #ddd;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

.btn-primary,
.btn-secondary {
  padding: 14px 28px;
  font-size: 1rem;
  border-radius: 4px;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-primary {
  background-color: #d60000;
  color: #fff;
}

.btn-primary:hover {
  background-color: #b30000;
}

.btn-secondary {
  background-color: #fff;
  color: #000;
}

.btn-secondary:hover {
  background-color: #eee;
}

.cta-note {
  font-size: 0.85rem;
  color: #ccc;
  line-height: 1.5;
}

.cta-note a {
  color: #ff5555;
  text-decoration: underline;
}/* End custom CSS */