.elementor-1317 .elementor-element.elementor-element-9bd133f{--display:flex;--flex-direction:column;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--align-items:stretch;--margin-top:40px;--margin-bottom:40px;--margin-left:0px;--margin-right:0px;}.elementor-1317 .elementor-element.elementor-element-a8c5473{--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;}:root{--page-title-display:none;}/* Start custom CSS *//* Trust badges */
.trust-strip-alt {
  background-color: #f0f4ff;
  border: 1px solid #dbe8ff;
  padding: 30px 20px;
  margin-bottom: 50px;
}

.trust-strip-alt .container {
  max-width: 1100px;
  margin: 0 auto;
}

.trust-strip-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  text-align: center;
}

.trust-strip-item {
  width: 220px;
  max-width: 100%;
}

.trust-icon {
  font-size: 32px;
  color: #3fae9c;
  margin-bottom: 10px;
  display: block;
}

.trust-strip-item p {
  font-size: 15px;
  font-weight: 600;
  color: #003366;
  margin: 0;
}



/* package cards */
.one-time-fix-page {
  background-color: #ffffff;
  padding: 60px 20px;
  text-align: center;
}

.one-time-fix-page .container {
  max-width: 1100px;
  margin: 0 auto;
}

.fix-page-title {
  font-size: 48px !important;
  font-weight: 700;
  color: #003399;
  margin-bottom: 10px;
}

.fix-page-subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
}

.fix-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Reuse card styling from homepage */
.fix-card {
  display: flex;
  flex-wrap: wrap;
  background-color: #f9fbff;
  border: 1px solid #dbe8ff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease;
}

.fix-card:hover {
  transform: translateY(-4px);
}

.fix-image img {
  width: 300px;
  height: 100%;
  object-fit: cover;
}

.fix-content {
  flex: 1;
  padding: 25px;
  text-align: left;
}

.fix-content h3 {
  font-size: 20px;
  color: #003366;
  font-weight: 700;
  margin-bottom: 10px;
}

.fix-content p {
  font-size: 15px;
  color: #444;
  margin-bottom: 20px;
  line-height: 1.6;
}

.fix-btn {
  display: inline-block;
  padding: 10px 24px;
  font-weight: 600;
  font-size: 15px;
  border-radius: 999px;
  text-decoration: none;
  color: #fff;
  background-color: #0066ff;
  transition: background-color 0.3s ease;
  text-decoration: none !important;
}

.fix-btn:hover {
  background-color: #004fcc;
  color: #ffffff;
}

/* Special styles */
.fix-card.hack {
  background-color: #fff5f5;
  border-left: 5px solid #ff4d4f;
}

.fix-card.hack .fix-content h3,
.fix-card.hack .fix-btn {
  color: #ffffff;
  background-color: #cc0000;
}

.fix-card.hack .fix-btn:hover {
  background-color: #990000;
}

.fix-card.speed .fix-image {
  animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
  0% { opacity: 1; }
  50% { opacity: 0.88; }
  100% { opacity: 1; }
}

.fix-card.tracking .fix-content h3 {
  color: #0c5d8d;
}
.fix-card.hack .fix-content h3 {
  background: none;
  color: #cc0000;
  font-weight: 700;
  margin-bottom: 10px;
}

.fix-card.hack .fix-content h3::before,
.fix-card.hack .fix-content h3::after {
  content: none; /* if any decorative bars were added globally */
}
.fix-price {
  font-size: 18px;
  font-weight: 700;
  display: inline-block;
  margin: 12px 0 20px;
  padding: 6px 16px;
  border-radius: 30px;
  background-color: #3fae9c;
  color: #ffffff;
}
/* Optional: custom colors per category */
.fix-card.hack .fix-price {
  background-color: #cc0000;
}
.details-btn {
background-color: #ffffff;
    
} 

/* FAQs */
.fix-faq-section {
  background-color: #ffffff;
  padding: 60px 20px;
  border-top: 1px solid #e5ecf5;
}

.fix-faq-section .container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-title {
  font-size: 32px !important;
  font-weight: 700;
  color: #003399;
  text-align: center;
  margin-bottom: 40px;
}

.faq-item {
  margin-bottom: 20px;
  border-bottom: 1px solid #dbe8ff;
}

.faq-question {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-size: 17px;
  font-weight: 600;
  color: #003366;
  padding: 15px;
  cursor: pointer;
  position: relative;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 20px;
  font-size: 20px;
  color: #0066ff;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-question::after {
  content: '−';
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 15px 15px;
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}

.faq-item.open .faq-answer {
  display: block;
}
.faq-question:hover {
  background-color: #0066ff;
  color: #ffffff;
}

.faq-question:hover::after {
  color: #ffffff;
}

.entry-content .wp-audio-shortcode, .entry-content .wp-embedded-audio, .entry-content .wp-embedded-video, .entry-content .wp-video, .entry-content p {
    margin-top: 1em;
}/* End custom CSS */