.elementor-49459 .elementor-element.elementor-element-947d67a{--display:flex;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-49459 .elementor-element.elementor-element-37a5d25{--display:flex;--gap:0px 0px;--row-gap:0px;--column-gap:0px;border-style:none;--border-style:none;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-49459 .elementor-element.elementor-element-6b8e8c0{--grid-columns:6;--grid-row-gap:8px;--grid-column-gap:8px;}.elementor-49459 .elementor-element.elementor-element-6b8e8c0.elementor-element{--align-self:center;}.elementor-49459 .elementor-element.elementor-element-6b8e8c0 .elementor-loop-container{grid-auto-rows:1fr;}.elementor-49459 .elementor-element.elementor-element-6b8e8c0 .e-loop-item > .elementor-section, .elementor-49459 .elementor-element.elementor-element-6b8e8c0 .e-loop-item > .elementor-section > .elementor-container, .elementor-49459 .elementor-element.elementor-element-6b8e8c0 .e-loop-item > .e-con, .elementor-49459 .elementor-element.elementor-element-6b8e8c0 .e-loop-item .elementor-section-wrap  > .e-con{height:100%;}@media(max-width:1024px){.elementor-49459 .elementor-element.elementor-element-6b8e8c0{--grid-columns:4;}}@media(max-width:767px){.elementor-49459 .elementor-element.elementor-element-6b8e8c0{--grid-columns:2;}}/* Start custom CSS for html, class: .elementor-element-ad1a375 *//* =========================================
   1. Hero Section (id="main-header") - BEM
   ========================================= */

/* --- Main Container & Background --- */
#main-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 95vh;
  padding: 80px 20px;
  overflow: hidden;
  text-align: center;
  color: #FFFFFF;
}
#main-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.85));
  z-index: 2;
}
#main-header .hero__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
#main-header .hero__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7) saturate(0.9);
}

/* --- Content & Typography --- */
#main-header .hero__content {
  position: relative;
  z-index: 3;
  max-width: 1100px;
  width: 100%;
  animation: heroFadeInUp 1s ease-out forwards;
}
@keyframes heroFadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
#main-header .hero__title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.7;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.6);
  letter-spacing: -1px;
  margin-bottom: 2rem;
}
#main-header .hero__subtitle {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  color: #E0E0E0;
  max-width: 700px;
  margin: 0 auto 3rem auto;
  line-height: 1.8;
  font-weight: 300;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
}

/* --- Anchor Cards Grid --- */
#main-header .hero__card-grid {
  display: grid;
  gap: 15px;
  /* با اضافه شدن یک آیتم، این حالت برای ۶ آیتم بهتر عمل می‌کند */
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}
#main-header .card--anchor {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 10px;
  min-height: 150px;
  color: #FFFFFF;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
#main-header .card--anchor:hover,
#main-header .card--anchor:focus-visible { /* Accessibility */
  transform: translateY(-10px);
  background: rgba(0, 0, 0, 0.5);
  border-color: #ffd700;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  outline: none;
}
#main-header .card__icon {
  font-size: 3.5rem;
  line-height: 1;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}
#main-header .card--anchor:hover .card__icon,
#main-header .card--anchor:focus-visible .card__icon {
  transform: rotate(-10deg) scale(1.1);
}
#main-header .card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #FFFFFF;
}

/* --- Responsive --- */
@media (max-width: 992px) {
  #main-header .hero__card-grid {
    /* در تبلت ۳ ستونه می‌شود تا ۶ آیتم جای گیرند */
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  #main-header .hero__card-grid {
    /* در موبایل ۲ ستونه باقی می‌ماند */
    grid-template-columns: repeat(2, 1fr);
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-b5d47f1 *//* ==============================================
   2. Service Introduction (id="service-introduction") - BEM
   ============================================== */

/* --- Reusable Components (Shared Styles) --- */
.section-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
}
.section-header__title {
  position: relative;
  font-size: clamp(1.9rem, 2.8vw, 2.4rem); /* Resized */
  font-weight: 700;
  margin-bottom: 20px;
}
.section-header__title::after {
  content: '';
  display: block;
  margin: 20px auto 0 auto;
  width: 90px;
  height: 3px;
  background-color: #ffd700;
  border-radius: 2px;
}
.section-header__emoji {
  display: inline-block;
  font-size: 1.2em;
  margin-left: 10px;
  vertical-align: middle;
}
.section-header__intro {
  font-size: 1.1em;
  color: #D5D5D5;
  line-height: 1.8;
  margin-top: 30px;
}
.image-frame {
  position: relative;
  padding: 8px;
  border: 1px solid #444;
  background-color: #333;
  border-radius: 16px;
  transition: all 0.4s ease;
}
.image-frame:hover,
.image-frame:focus-visible { /* Accessibility */
  border-color: #ffd700;
  outline: none;
}
.image-frame::after {
  content: '';
  position: absolute;
  bottom: -4px;
  right: -4px;
  width: 40%;
  height: 40%;
  border-bottom: 3px solid #ffd700;
  border-right: 3px solid #ffd700;
  border-radius: 0 0 16px 0;
  transition: all 0.4s ease;
}
.image-frame:hover::after,
.image-frame:focus-visible::after {
  width: calc(40% + 8px);
  height: calc(40% + 8px);
}
.image-frame img {
  border-radius: 10px;
  display: block;
  width: 100%;
  height: auto;
}
a:focus-visible { /* General focus style for links */
    outline: 2px solid #87CEFA;
    outline-offset: 2px;
    border-radius: 4px;
}

/* --- Section Specific --- */
#service-introduction {
  background-color: #2C2F33;
  padding: 70px 20px;
  border-top: 1px solid #444;
  border-bottom: 1px solid #444;
}
#service-introduction .split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  max-width: 1200px;
  margin: 50px auto 0 auto;
}
#service-introduction .split-layout__heading {
  font-size: clamp(1.3rem, 1.8vw, 1.5rem); /* Resized */
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 15px;
}
#service-introduction .split-layout__emoji {
  display: inline-block;
  font-size: 1.2em;
  margin-left: 8px;
  vertical-align: middle;
}
#service-introduction .split-layout__heading:not(:first-of-type) {
  margin-top: 30px;
}
#service-introduction .split-layout__content p {
  margin: 0;
  line-height: 1.9;
  font-size: 1.1em;
  color: #D5D5D5;
}
#service-introduction .split-layout__content a {
  color: #87CEFA;
  text-decoration: underline;
  text-decoration-color: rgba(135, 206, 250, 0.4);
}
#service-introduction .split-layout__content a:hover,
#service-introduction .split-layout__content a:focus-visible {
  color: #FFFFFF;
  text-decoration-color: #ffd700;
}

/* --- Responsive --- */
@media (max-width: 850px) {
  #service-introduction {
    padding: 50px 15px;
  }
  #service-introduction .split-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-59af6fb *//* ===================================================
   3. Related Products Intro (id="related-products-intro") - BEM
   =================================================== */

#related-products-intro {
  background-color: #26292E;
  padding: 50px 20px 10px;
  text-align: center;
  border-bottom: 1px solid #444;
}

/* Responsive */
@media (max-width: 768px) {
  #related-products-intro {
    padding: 20px 10px 10px;
  }
}/* End custom CSS */
/* Start custom CSS for loop-grid, class: .elementor-element-6b8e8c0 *//* =================================================================
   4. WooCommerce Products Loop (id="internal-loop-grid") - BEM Rewrite
   ================================================================= */

/* --- Main Grid Layout --- */
#internal-loop-grid .products {
  display: grid;
  gap: 20px;
  padding: 0;
  margin: 0;
  list-style: none;
  grid-template-columns: repeat(6, 1fr);
}

/* --- Product Card Container --- */
#internal-loop-grid .product-container-in-loop-grid {
  background-color: #2A3F54;
  border: 1px solid #444;
  border-radius: 15px;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
#internal-loop-grid .product-container-in-loop-grid:hover,
#internal-loop-grid .product-container-in-loop-grid:focus-within {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  border-color: #ffd700;
  outline: none;
}
#internal-loop-grid .product-container-in-loop-grid > a {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}
#internal-loop-grid .product-container-in-loop-grid > a:focus-visible {
    outline: none;
}


/* --- Image Wrapper --- */
#internal-loop-grid .product-image-in-loop-grid {
  display: block;
  position: relative;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.08); 
  border-bottom: 1px solid #444;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}
#internal-loop-grid .product-image-in-loop-grid img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  padding: 1px;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  mix-blend-mode: normal; 
}
#internal-loop-grid .product-container-in-loop-grid:hover .product-image-in-loop-grid img {
  transform: scale(1.08);
}

/* --- Sale Badge --- */
#internal-loop-grid .product-discount-in-loop-grid {
  position: absolute;
  top: 15px;
  right: -1px;
  background-color: #EC7063;
  color: #FFFFFF;
  padding: 5px 15px;
  font-size: 0.9em;
  font-weight: 700;
  border-radius: 4px 0 0 4px;
  box-shadow: -2px 2px 5px rgba(0,0,0,0.2);
  z-index: 2;
}

/* --- Content Wrapper (Name & Price) --- */
#internal-loop-grid .product-content-wrapper {
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-grow: 1;
}

/* --- Product Name --- */
#internal-loop-grid .product-name-in-loop-grid {
  font-size: 1.05em;
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1.4;
  margin: 0 0 1px 0;
  transition: color 0.2s ease;
}
#internal-loop-grid .product-container-in-loop-grid:hover .product-name-in-loop-grid {
  color: #ffd700;
}

/* --- Product Price --- */
#internal-loop-grid .product-price-in-loop-grid {
  font-size: 1.05em;
  font-weight: 700;
  color: #58D68D;
  margin-top: auto;
}
#internal-loop-grid .product-price-in-loop-grid del {
  color: #888;
  font-size: 0.8em;
  font-weight: 400;
  margin-left: 8px;
}
#internal-loop-grid .product-price-in-loop-grid ins {
  text-decoration: none;
}

/* --- Responsive Grid Adjustments --- */
@media (max-width: 991px) {
  #internal-loop-grid .products {
    grid-template-columns: repeat(4, 1fr);
  }
  #internal-loop-grid .product-name-in-loop-grid,
  #internal-loop-grid .product-price-in-loop-grid {
      font-size: 0.95em;
  }
}

@media (max-width: 767px) {
  #internal-loop-grid .products {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  #internal-loop-grid .product-name-in-loop-grid,
  #internal-loop-grid .product-price-in-loop-grid {
      font-size: 0.9em;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-e69503a *//* =========================================
   5. Further Suggestions (id="further-suggestions") - BEM
   ========================================= */
#further-suggestions {
  background-color: #2C2F33;
  padding: 50px 20px;
  border-top: 1px solid #444;
}

#further-suggestions .suggestions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

#further-suggestions .card--suggestion {
  background-color: #333842;
  border: 1px solid #4a4a4a;
  border-radius: 12px;
  min-height: 200px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
}
#further-suggestions .card--suggestion:hover,
#further-suggestions .card--suggestion:focus-visible {
  transform: translateY(-8px);
  border-color: #ffd700;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  outline: none;
}

#further-suggestions .card__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-grow: 1;
}
#further-suggestions .card__icon {
  font-size: 2.5rem;
  height: 50px;
  line-height: 50px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
}
#further-suggestions .card__icon--svg {
  height: 50px;
  width: auto;
  max-width: 100px;
  filter: brightness(0) invert(1);
}
#further-suggestions .card__icon--png {
  height: auto;
  width: auto;
  max-height: 50px;
  max-width: 120px;
}
#further-suggestions .card__title {
  font-size: 1.2em;
  color: #FFFFFF;
  font-weight: 700;
  margin-top: auto;
}
#further-suggestions .card__description {
  font-size: 1em;
  color: #D5D5D5;
  line-height: 1.6;
  margin: 15px 0 0 0;
  padding: 0;
}

/* --- Responsive --- */
@media (max-width: 992px) {
  #further-suggestions {
    padding: 50px 15px;
  }
  #further-suggestions .suggestions-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}
@media (max-width: 767px) {
    #further-suggestions .card--suggestion {
        min-height: auto;
        padding: 20px 15px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-0fdc930 *//* =========================================
   6. Purity Comparison (id="purity-comparison") - BEM
   ========================================= */
#purity-comparison {
  background-color: #26292E;
  padding: 50px 20px;
  border-top: 1px solid #444;
  border-bottom: 1px solid #444;
}

#purity-comparison .comparison-table__container {
  max-width: 1100px;
  margin: 40px auto 0 auto;
  overflow-x: auto;
}

#purity-comparison .comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  color: #FFFFFF;
}

#purity-comparison .comparison-table th,
#purity-comparison .comparison-table td {
  padding: 15px 20px;
  border: 1px solid #444;
}

#purity-comparison .comparison-table th {
  background-color: #2A3F54;
  font-size: 1.1em;
  font-weight: 700;
}
#purity-comparison .comparison-table thead th:first-child {
  text-align: right;
}

#purity-comparison .comparison-table tbody td {
  background-color: #2C2F33;
  color: #D5D5D5;
  font-size: 1em;
  line-height: 1.6;
  transition: background-color 0.3s ease;
}
#purity-comparison .comparison-table tbody tr:hover td {
  background-color: #333842;
}
#purity-comparison .comparison-table tbody td:first-child {
  text-align: right;
}
#purity-comparison .comparison-table tbody td:first-child strong {
  color: #FFFFFF;
  font-weight: 600;
}
#purity-comparison .comparison-table tbody tr:nth-child(2) td:nth-child(2) {
  font-weight: bold;
}

/* --- Responsive Table --- */
@media (max-width: 767px) {
  #purity-comparison .comparison-table thead {
    display: none;
  }
  #purity-comparison .comparison-table tr {
    display: block;
    margin-bottom: 20px;
    border: 1px solid #444;
    border-radius: 8px;
    overflow: hidden;
  }
  #purity-comparison .comparison-table td {
    display: block;
    text-align: left;
    border: none;
    border-bottom: 1px solid #444;
    padding-left: 10px;
  }
  #purity-comparison .comparison-table td:last-child {
      border-bottom: none;
  }
  #purity-comparison .comparison-table td::before {
    content: attr(data-label);
    float: right;
    font-weight: bold;
    color: #FFFFFF;
    text-align: right;
    width: 50%;
  }
  #purity-comparison .comparison-table td:first-child {
      background-color: #2A3F54;
      font-weight: bold;
      text-align: center;
  }
  #purity-comparison .comparison-table td:first-child::before {
      display: none;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-269a979 *//* =========================================
   7. Benefits Analysis (id="benefits-analysis") - BEM
   ========================================= */

#benefits-analysis {
  background-color: #333333;
  padding: 40px 20px 10px;
}
#benefits-analysis .section-header {
  margin-bottom: 60px;
}
#benefits-analysis .zigzag-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}
#benefits-analysis .zigzag-layout__heading {
  font-size: clamp(1.4rem, 2vw, 1.6rem);
  font-weight: 700;
  color: #FFFFFF;
  margin-top: 0;
  margin-bottom: 15px;
}
#benefits-analysis .zigzag-layout__heading:not(:first-of-type) {
  margin-top: 30px;
}
#benefits-analysis .zigzag-layout__emoji {
  display: inline-block;
  font-size: 1.1em;
  margin-left: 8px;
  vertical-align: middle;
  color: #ffd700;
}
#benefits-analysis .zigzag-layout__content p {
  margin: 0;
  color: #D5D5D5;
  font-size: 1.1em;
  line-height: 1.8;
}
#benefits-analysis .zigzag-layout__content a {
  color: #87CEFA;
  text-decoration: underline;
  text-decoration-color: rgba(135, 206, 250, 0.4);
}
#benefits-analysis .zigzag-layout__content a:hover,
#benefits-analysis .zigzag-layout__content a:focus-visible {
  color: #FFFFFF;
  text-decoration-color: #ffd700;
}

/* --- Responsive (Desktop Zig-Zag) --- */
@media (min-width: 851px) {
  #benefits-analysis .zigzag-layout {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
  .zigzag-layout__content:first-of-type {
      order: 1;
  }
  .zigzag-layout__media--right {
      order: 2;
  }
  .zigzag-layout__media--left {
      order: 3;
  }
  .zigzag-layout__media--left + .zigzag-layout__content {
      order: 4;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-9bd7e76 *//* =========================================
   8. CTA Section (id="final-cta") - BEM
   ========================================= */

/* --- Reusable Button Component --- */
.button {
  display: inline-block;
  padding: 12px 28px;
  margin: 10px 5px;
  border-radius: 10px;
  font-size: 1.1em;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}
.button:focus-visible {
    outline: 2px solid #FFFFFF;
    outline-offset: 3px;
}
.button--primary {
  background-color: #ffd700;
  color: #333333;
  border-color: #ffd700;
}
.button--primary:hover, .button--primary:focus-visible {
  background-color: #e6c300;
  border-color: #e6c300;
  transform: translateY(-2px);
  color: #333333;
}
.button--primary:focus-visible {
    outline-color: #ffd700;
}
.button--secondary {
  background-color: transparent;
  color: #FFFFFF;
  border-color: #FFFFFF;
}
.button--secondary:hover, .button--secondary:focus-visible {
  background-color: #FFFFFF;
  color: #333333;
}

/* --- Section Specific --- */
#final-cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  padding: 70px 0; 
  overflow: hidden;
  color: #FFFFFF;
}
#final-cta .cta__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  filter: brightness(0.7);
}
#final-cta .cta__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#final-cta .cta__overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 20px; 
}
#final-cta .cta__content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 40px 50px;
  animation: heroFadeInUp 1s ease-out forwards;
}
#final-cta .cta__title {
  color: #FFFFFF;
  text-shadow: 0 2px 5px rgba(0,0,0,0.7);
  margin: 0 0 1rem 0;
  font-size: clamp(1.8rem, 2.5vw, 2.2rem);
}
#final-cta .cta__emoji {
  display: inline-block;
  font-size: 1.2em;
  margin-left: 10px;
  vertical-align: middle;
}
#final-cta .cta__text {
  color: #E0E0E0;
  font-size: 1.15em;
  text-shadow: 0 1px 4px rgba(0,0,0,0.8);
  margin-bottom: 30px;
  line-height: 1.9;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    #final-cta .cta__content {
        padding: 30px 20px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-ca6588e *//* =========================================
   9. FAQ Section (id="faq-section") - BEM
   ========================================= */

#faq-section {
  background-color: #333333;
  padding: 30px 20px;
}
#faq-section .section-header {
  margin-bottom: 40px;
}

/* --- Category Cards --- */
#faq-section .faq__category-grid {
  display: grid;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto 40px auto;
  grid-template-columns: repeat(6, 1fr);
}
#faq-section .card--faq-category {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #2A3F54;
  border: 1px solid #444;
  border-radius: 15px;
  min-height: 120px;
  padding: 20px;
  text-decoration: none;
  text-align: center;
  color: #FFFFFF;
  transition: all 0.25s ease-in-out;
}
#faq-section .card--faq-category:hover,
#faq-section .card--faq-category:focus-visible { /* Accessibility */
  transform: translateY(-5px);
  border-color: #ffd700;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
  outline: none;
}
#faq-section .card--faq-category .card__icon {
  font-size: 3rem;
  margin-bottom: 15px;
}
#faq-section .card--faq-category .card__title {
  font-size: 1em;
  font-weight: 700;
}

/* --- FAQ Group Title (H3) --- */
#faq-section .faq__group-title {
  text-align: right;
  border-bottom: 2px solid #ffd700;
  padding-bottom: 15px;
  margin: 60px 0 30px 0;
  color: #FFFFFF;
  font-size: clamp(1.5rem, 2.2vw, 1.8rem);
}
#faq-section .faq__group-title:first-of-type {
  margin-top: 20px;
}

/* --- Accordion List --- */
#faq-section .faq__list {
  max-width: 1200px;
  margin: 0 auto;
}
#faq-section .faq-item {
  background-color: #2A3F54; /* Unifying background color */
  border: 1px solid #444;
  border-radius: 12px;
  margin-bottom: 10px;
  transition: all 0.2s ease-in-out;
}
#faq-section .faq-item[open] {
  border-color: #ffd700;
  /* background-color is now the same */
}

/* Accordion Header (<summary>) */
#faq-section .faq-item__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 20px;
  font-weight: 600;
  font-size: 1.1em;
  cursor: pointer;
  list-style: none;
  color: #FFFFFF;
  transition: background-color 0.2s;
}
#faq-section .faq-item__header::-webkit-details-marker { 
  display: none; 
}
#faq-section .faq-item__header:hover {
  color: #ffd700;
}
#faq-section .faq-item[open] > .faq-item__header {
  color: #ffd700;
}
#faq-section .faq-item__header:focus-visible {
  outline: 2px solid #87CEFA;
  outline-offset: 2px;
  border-radius: 10px;
}

/* Content inside Header */
#faq-section .faq-item__question {
  display: flex;
  align-items: center;
  text-align: right;
  gap: 15px;
}
#faq-section .faq-item__icon {
  font-size: 1.4em;
  line-height: 1;
}
#faq-section .faq-item__indicator {
  width: 15px;
  height: 15px;
  position: relative;
  flex-shrink: 0;
}

/* Creating the + and - icon */
#faq-section .faq-item__indicator::before,
#faq-section .faq-item__indicator::after {
  content: '';
  position: absolute;
  background-color: #ffd700;
  transition: transform 0.3s ease-out;
}
/* Horizontal line */
#faq-section .faq-item__indicator::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  margin-top: -1px;
}
/* Vertical line */
#faq-section .faq-item__indicator::after {
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  margin-left: -1px;
}
/* When open, rotate vertical line to create a '-' sign */
#faq-section .faq-item[open] .faq-item__header .faq-item__indicator::after {
  transform: rotate(90deg);
}

/* Accordion Answer */
#faq-section .faq-item__answer {
  border-top: 1px solid #444;
  padding: 20px 25px;
  line-height: 1.9;
}
#faq-section .faq-item__answer p,
#faq-section .faq-item__answer li {
  color: #E0E0E0;
  font-size: 1em;
}
#faq-section .faq-item__answer ul,
#faq-section .faq-item__answer ol {
  padding-right: 25px;
  margin-top: 15px;
}
#faq-section .faq-item__answer ul li,
#faq-section .faq-item__answer ol li {
  margin-bottom: 12px;
}
#faq-section .faq-item__answer a {
  color: #87CEFA;
}
#faq-section .faq-item__answer a:hover {
  color: #FFFFFF;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  #faq-section .faq__category-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  #faq-section {
    padding: 50px 15px;
  }
  #faq-section .faq__category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  #faq-section .faq-item__header {
    padding: 15px;
    font-size: 1rem;
    gap: 10px;
  }
  #faq-section .faq-item__question {
    gap: 10px;
  }
  #faq-section .faq-item__icon {
    font-size: 1.2em;
  }
}/* End custom CSS */