.top-banner {
    height: 400px;
    position: relative;
  }

  .top-banner p {
    /* color: white;
    position: absolute;
    bottom: 10px;
    left: 18vw;
    font-size: 35px; */
  }

  .top-banner h1 .country-name {
    font-size: 70px;
    text-transform: uppercase;
    letter-spacing: 5px
  }



/* Style the intro section */
.intro {
    /*! background-color: #f5f5f5; */
    /*! padding: 20px; */
    /*! text-align: center; */
    display: flex;
    max-width: var(--max-width);
    margin-inline: auto;
    padding-block: 60px;
    gap: 40px;
    width: 90%;
    justify-content: center;
    align-items: center;

}

.intro div {
    margin-bottom: 20px;
        font-size: 17px;
}

.intro div:first-of-type {
    width: 70%;

}

.intro div:last-of-type {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: flex-end;
}

@media (min-width:768px) {

}

/* Style the features section */
.features {
/*! display: flex; */
/*! flex-wrap: wrap; */
/*! justify-content: space-evenly; */
/*! align-items: center; */
/*! gap: 40px; */
padding-block: 40px;
width: 100%;
}

.feature {
text-align: center;
font-size: 16px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}


.features > div {
    display: flex;
    margin-inline: auto;
    justify-content: space-evenly;
    align-items: center;
    max-width: var(--max-width);
  }

.feature img {
    width: 100px; /* Set the width of the image */
    margin-block-end: 15px;
}

/* Style the from-to section */
.from-to {
    display: flex;
    justify-content: space-around;
    /*! padding: 20px; */
    margin-block-start: 30px;
}

.from-to div {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 100px;
    min-height: 300px;
        flex: 1;
    font-size: 17px;
    border: 1px solid #c8c8c8;
    /*! gap: 40px; */
}

.from-to div p {
    margin-top: 10px;
    padding-inline: 20px;
}

.from-to div button {
    margin-top: auto;
}

.from-to div:first-of-type {
    background: var(--main-theme-color);
}

.from-to div:first-of-type h2 {
    color: var(--main-theme-color);
}

.from-to div:first-of-type p {
    color: #fff;
    opacity: .8;
}

.from-to div:last-of-type {

}

.head-faq {
    /* background: aliceblue; */
text-align: center;
padding-block: 50px;
    padding-inline: 20px;
}

.head-faq header {
    /* font-size: 40px;
    color: var(--main-theme-color); */
}

.head-faq p {
    margin-block-start: 20px;
    font-size: 16px;
    color: var(--para-color);
}

.faq {
    max-width: var(--max-width);
    width: 90%;
    margin-inline: auto;
    padding-block-end: 40px;
}

.btn-white {
    background: white !important;
    color: var(--main-theme-color);
}

.btn-white:hover {
    color: var(--main-theme-color) !important;
    filter: brightness(0.9);
}

/* Media query for responsiveness */
@media screen and (max-width: 768px) {
      .top-banner {
    display: grid;
    place-items: center;
  }

  .top-banner img {
      scale: 3
  }

  .top-banner p {
    position: relative;
    top: -60px;
    left: initial;
  }

    .intro {
        flex-direction: column;
        gap: 10px;
        padding-block: 0 40px;
    }

    .intro div:first-of-type {
        width: 100%;
    }

    .features > div{
        justify-content: center;
        flex-wrap: wrap;
        gap: 40px;
    }

    .from-to {
        flex-direction: column;
        align-items: center;
    }

    .from-to div {
        padding-inline: 10px;
        min-height: 350px;
    }


    .from, .feature {
        width: 100%;
    }
}

.testimonial-section {
    margin-block: 30px;
}



