.elementor-1106 .elementor-element.elementor-element-5c3c292{--display:flex;}.elementor-1106 .elementor-element.elementor-element-609b33e{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-b3f1a7f *//* Universal Footer CSS - Add this to all calculator pages */
/* Copy this CSS and add it to the <style> section of each calculator page */

.universal-footer {
  background: linear-gradient(135deg, #2A4D8F 0%, #1a365d 100%);
  color: #fff;
  padding: 0;
  margin-top: 60px;
  position: relative;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  width: 100%;
}

.universal-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #27AE60 0%, #FFA726 50%, #27AE60 100%);
}

.footer-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  padding: 50px 0 30px;
}

.footer-section h4 {
  color: #FFA726;
  font-size: 1.3em;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-section h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: #27AE60;
  border-radius: 2px;
}

.footer-section p {
  color: #e0e6f0;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 0.95em;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 12px;
}

.footer-section ul li a {
  color: #e0e6f0;
  text-decoration: none;
  font-size: 0.95em;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  padding-left: 0;
}

.footer-section ul li a::before {
  content: '→';
  color: #27AE60;
  margin-right: 8px;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.footer-section ul li a:hover {
  color: #FFA726;
  transform: translateX(5px);
}

.footer-section ul li a:hover::before {
  transform: translateX(3px);
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.1em;
}

.footer-social a:hover {
  background: #27AE60;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(39, 174, 96, 0.3);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 25px 0;
  text-align: center;
}

.footer-bottom-content p {
  color: #b0b8c8;
  font-size: 0.9em;
  margin: 5px 0;
  line-height: 1.5;
}

.footer-bottom-content p:first-child {
  color: #e0e6f0;
  font-weight: 600;
  font-size: 1em;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 40px 0 25px;
  }
  
  .footer-section {
    text-align: center;
  }
  
  .footer-section h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .footer-bottom {
    padding: 20px 0;
  }
}

@media (max-width: 480px) {
  .footer-wrapper {
    padding: 0 15px;
  }
  
  .footer-content {
    padding: 30px 0 20px;
  }
  
  .footer-section h4 {
    font-size: 1.2em;
  }
  
  .footer-section p,
  .footer-section ul li a {
    font-size: 0.9em;
  }
}/* End custom CSS */