/** Shopify CDN: Minification failed

Line 84:0 All "@import" rules must come first

**/


/* CSS from section stylesheet tags */
.custom-section {
    position: relative;
    overflow: hidden;
    padding: 40px;
  }
  .section-heading {
    font-family: Alata;
    font-weight: 800;
    color: #fff8e6;
    margin-bottom: 16px;
    text-align: center;
  }
  .section-subheading {
    margin-bottom: 32px;
    color: #fff8e6;
    text-align: center;
  }
  .accordion-wrapper {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
  }
  .accordion-list {
    max-width: 600px;
    width: 100%;
  }
  .accordion-item {
    border-bottom: 1px solid rgba(255,255,255,0.3);
    padding: 16px 0;
    cursor: pointer;
    color: #fff8e6;
    font-size: 1.5rem;
  }
  .accordion-title {
    font-weight: 700;
    font-family: 'Oswald', sans-serif;
    display: flex;
    justify-content: space-between;
    font-size: 2rem;
  }
  .accordion-content {
    display: none;
    margin-top: 12px;
    font-size: 1.5rem;
  }
  .image-display {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 800px;
    z-index: 0;
    overflow: hidden;
  }
  .image-display::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 1;
  }
  .image-display img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
  }
  .image-display img.active {
    opacity: 1;
  }
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

.partners-section {
  text-align: center;
  padding: 40px 20px;
}

.partners-heading {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
  font-family: "Outfit", sans-serif;
}

.partners-subheading {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: rgba(0,0,0,0.7);
  font-family: "Outfit", sans-serif;
}

.partners-grid {
  display: grid;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.partners-grid img {
  max-width: 160px;
  max-height: 100px;
  object-fit: contain;
  margin: auto;
}