
/* ================= TRUST STRIP ================= */
.trust-strip{
    margin-top:2rem;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:1rem;
}

.trust-strip.desktop{
  grid-template-columns: 1fr;
}

.trust-item{
    background:var(--color-white);
    border-radius:0.75rem;
    padding:1.25rem;
    box-shadow:0 10px 25px rgba(0,0,0,0.04);
}

.trust-item strong{
    display:block;
    color:var(--color-blue);
    margin-bottom:0.25rem;
}

/* ================= CONTACT BODY ================= */
.contact-body{
    max-width:1200px;
    margin:3rem auto 4rem;
    padding:0 1.25rem;
    display:flex;
    flex-direction:column;
    gap:2.5rem;
}

.contact-grid{
    display:flex;
    flex-direction:column;
    gap:2.5rem;
}

.contact-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:1rem;
}

.contact-info a{
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.key-item4 {
   display: inline-block;
    height: 2em;
    width: auto;
    scale: 0.8;
}



.contact-info{
    background:var(--color-white);
    border-radius:1rem;
    padding:2rem;
    box-shadow:0 20px 40px rgba(0,0,0,0.06);
}

.contact-info h3{
    color:var(--color-blue);
    margin-bottom:0.75rem;
}

.contact-info p{
    line-height:1.6;
    margin-bottom:1.25rem;
}

.contact-info a{
    color:var(--color-blue);
    font-weight:600;
    text-decoration:none;
    display:block;
    margin-bottom:0.5rem;
}


/* Section wrapper */
.info-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

/* Individual blocks */
.info-block {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
  text-align: center;
}

/* Image */
.info-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 12px;
}

.info-image.mobile{
  display: none;
}

/* ================= faq ================= */
.faq-container {
  max-width: 750px;
  margin: 0 auto;
  background: #ffffff;
  padding: 30px;
  border-radius: 6px;
  margin-bottom: 3em;
}

.faq-subject {
  margin-top: 32px;
  margin-bottom: 8px;
  font-size: 20px;
  border-bottom: 2px solid #e0e0e0;
  padding-bottom: 6px;
}

.faq-item {
  border-bottom: 1px solid #e0e0e0;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 14px 0;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.faq-question::after {
  content: "+";
  float: right;
  font-size: 18px;
}

.faq-question.active::after {
  content: "-";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-answer p {
  padding-bottom: 14px;
  line-height: 1.5;
}


/* ================= DESKTOP ================= */
@media(min-width:768px){
    .page-introduction h2{
        font-size:var(--title-font-size);
    }

    .trust-strip{
        grid-template-columns:repeat(4,1fr);
    }

    .trust-strip.desktop{
      grid-template-columns: repeat(3,1fr);
    }

    .contact-grid{
        flex-direction:row;
        align-items:stretch;
    }

    .contact-image,
    .contact-form{
        flex:1;
        max-width: 650px;
    }

    .off-screen-menu{
        width:40%;
    }

  .info-block {
    flex-direction: row;
    align-items: center;
    gap: 3rem;
   text-align: center;
  }

  .info-block.reverse {
    flex-direction: row-reverse;
  }

  .info-image,
  .info-text {
    flex: 1;
  }

  .info-image.mobile{
  display: block;
}

  .info-text {
    padding: 0;
  }
}




