.elementor-1306 .elementor-element.elementor-element-9c5542{--display:flex;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-1306 .elementor-element.elementor-element-6871bfc9{font-family:"Inter", Sans-serif;font-size:14px;font-weight:400;line-height:1.1em;color:var( --e-global-color-a1ec151 );}/* Start custom CSS *//* Section and Column Layout */
.section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px;
  font-family: "Inter", Sans-Serif;
  width:100%;
 background: #FFFFFF;
 padding:15px;
 margin:15px;
 transition: 0.5s ease-out;
 overflow: visible;
  align-content: flex-middle;
  justify-content: space-evenly;
  
}


.column {
  display: inline-block;
  padding:5px 2px 5px 2px;
  max-width: 450px;
}

/* Full-width columns that span both columns */
.column[style*="grid-column: span 2"] {
  grid-column: span 2;
}

/* Responsive behavior for smaller screens */
@media (max-width: 768px) {
  .section {
    grid-template-columns: 1fr;
  }
  
  .column[style*="grid-column: span 2"] {
    grid-column: span 1;
  }
}

/* Typography within sections */
.column h3 {
  margin: 0 0 5px 0;
  font-size: 20px;
  line-height: 1;
  font-weight: 500;
  
}
h2{
 line-height : 1;
 font-size : 28px;
}

.column p {
  margin: 0 0 2px 0;
  font-size: 14px;
}

.column ul,
.column ol {
  margin: 0;
  padding-left: 20px;
}

.column li {
  margin-bottom: 0px;
}

/* Image float clearing */
.column::after {
  content: "";
  display: table;
  clear: both;
}

/* Ensure proper spacing after floated images */
.column img {
  margin-bottom: 15px;
}
.FAQ  {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  width: 100%;
  margin: 0;
  padding: 0;
}
.FAQ h3{font-size:15px; line-height:1; font-weight:700;}
.FAQ p{font-size:15px; line-height:1;}
}


.FAQ_Question {
  display: flex;
  flex-direction: column;
  gap: 0;
}



/* FAQ Item Styling */
.FAQ_Question .rank-math-faq-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 15px;
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  height: 100%;
}

.FAQ_Question .rank-math-question {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: #333;
  line-height: 1.4;
}

.FAQ_Question .rank-math-answer {
  margin: 0;
  font-size: 0.9rem;
  color: #555;
  line-height: 1.5;
}

/* Responsive behavior for tablets */
@media (max-width: 1024px) {
  .FAQ {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Responsive behavior for mobile */
@media (max-width: 768px) {
  .FAQ {
    grid-template-columns: 1fr;
  }
}

/* Hover effect for interactivity */
.FAQ_Question .rank-math-faq-item:hover {
  background-color: #f0f0f0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease-in-out;
}/* End custom CSS */