p, div, h1, h2, h3, h4, h5, h6 {
    padding: 0;
    margin: 0;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #101011;
    background-color: #f5f4ed;
}

header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #D5C2E8;
    box-shadow: 0 4px 6px rgba(102, 51, 153, 0.1);
    padding: 10px 20px;
}

header .wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1092px;
    margin: 0 auto;
}

header .download {
    height: 40px;
    width: 40px;
    background: url(./images/app-store.png) no-repeat center/contain;
}

header a {
    text-decoration: none;
    color: #101011;
    font-weight: 500;
}

.hero {
    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    max-width: 1092px;
    margin: 0 auto;
}

.logo {
    text-decoration: none;
    font-size: 30px;
    color: #101011;
}

.hero h1 {
    display: flex;
    align-self: first baseline;
    font-size: 60px;
    font-weight: 600;
    text-align: left;
    line-height: 110%;
    margin: 40px 0;
}

.hero p {
    font-size: 24px;
    text-align: left;
}

.hero a, .cta a {
    width: 180px;
    height: 60px;
    display: block;
    cursor: pointer;
    margin: 40px 0;
    background: url('images/Download_on_the_App_Store_Badge_US-UK_RGB_blk_092917.svg') no-repeat center/cover;
}

.features .feature {
    display: flex;
    gap: 40px;
    align-items: center; 
    max-width: 1092px;
    margin: 0 auto;
    padding: 20px;
}

.feature-image1, .feature-image2, .feature-image3, .feature-image4, .feature-image5 {
    width: 320px;
    height: 320px;
}

.features .feature a {
    text-decoration: none;
    color: #101011;
    font-size: 10px;
    text-align: right;
}

.feature-image1 {
    background: url(./images/6691916.jpg) no-repeat center/cover;
}

.feature-image2 {
    background: url(./images/4818144.jpg) no-repeat center/cover;
}

.feature-image3 {
    background: url(./images/4811635.jpg) no-repeat center/cover;
}

.feature-image4 {
    background: url(./images/4804092.jpg) no-repeat center/cover;
}

.feature-image5 {
    background: url(./images/10426658.jpg) no-repeat center/cover;
}

.features h2 {
    font-size: 40px;
    font-weight: 600;
}

.features .feature div:first-child {
    flex: 0 0 65%;
}

.features .feature div:last-child {
    flex: 0 0 35%;
}

.features .feature h3 {
    font-size: 30px;
    font-weight: 400;
    /* margin: 0 20px; */
}

.features .feature p {
    font-size: 1rem;
    /* margin: 0 20px; */
}

.feature1, .feature2, .feature3, .feature4, .feature5 {
    position: sticky;
    top: 60px;
  }

  .feature1, .feature4 {
    background: rgba(235, 197, 210);
  }

  .feature2, .feature5 {
    background: rgba(241, 214, 126);
  }

  .feature3 {
    background: rgba(188, 173, 244);
  }

.feature .image-placeholder {
    width: 30%;
    height: 200px;
    /* background-color: #ddd; */
    display: flex;
    align-items: center;
    justify-content: center;
    /* color: #555; */
}

.subtitle {
    margin: 0 auto 40px;
    max-width: 1092px;
    padding: 0 20px;
}

.bannerContainer {
    display: flex;
    align-items: center;
    height: 140px;
    overflow: hidden;
    background-color: #e0e0d6;
}

.lavander {
    background-color: rgba(188, 173, 244);
}

.bannerContainer .scroll {
    white-space: nowrap;
}

.bannerContainer .scroll div {
    display: flex;
    gap: 10px;
}

.bannerContainer .scroll a {
    font-size: 40px;
    font-weight: bold;
    text-decoration: none;
    color: #101011;
}

.bannerContainer .RightToLeft {
    animation: RightToLeft 10s infinite linear;
}

.bannerContainer .RightToLeft:hover {
    animation-play-state: paused;
}

@keyframes RightToLeft {
    from {
        transform: translateX(0%);
    }

    to {
        transform: translateX(-50%);
    }
}

.bannerContainer .LeftToRight {
    animation: LeftToRight 10s infinite linear;
}

.bannerContainer .LeftToRight:hover {
    animation-play-state: paused;
}

@keyframes LeftToRight {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0%);
    }
}

.howItWorks {
    background: #101011;
    color: #f5f4ed;
    padding: 80px 20px;
}

.howItWorks .wrapper {
    max-width: 1092px;
    margin: 0 auto;
}

.howItWorks .titleDescription {
    display: flex;
    gap: 5%;
    margin-bottom: 60px;
}

.howItWorks .titleDescription p:first-child {
    flex: 0 0 60%;
    font-size: 60px;
    font-weight: bold;
}

.howItWorks .titleDescription p:last-child {
    flex: 0 0 35%;
    font-size: 24px;
}

.howItWorks .pointsGrid {
    display: grid;
    gap: 5%;
    grid-template-columns: 30% 30% 30%;
}

.firstPoint, .secondPoint, .thirdPoint {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.howItWorks .pointsGrid div {
    padding: 20px;
    color: #101011;
    border-radius: 20px;
}

.howItWorks .pointsGrid .title {
    font-size: 30px;
    font-weight: 400;
    margin-bottom: 40px;
}

.pointsGrid .firstPoint {
    background: rgba(235, 197, 210);
}

.pointsGrid .image {
    height: 360px;
    width: 90%;
}

.pointsGrid .firstPoint .image {
    background: url(./images/rb_2106.png) no-repeat bottom/contain;
}

.pointsGrid .secondPoint {
    background: rgba(241, 214, 126);
}

.pointsGrid .secondPoint .image {
    background: url(./images/rb_26423.png) no-repeat bottom/contain;
}

.pointsGrid .thirdPoint {
    background: rgba(188, 173, 244);
}

.pointsGrid .thirdPoint .image {
    background: url(./images/rb_3727.png) no-repeat bottom/contain;
}

.plansDescription .wrapper {
    max-width: 1092px;
    margin: 0 auto;
    padding: 80px 20px;
}

.plansDescription .title {
    font-size: 60px;
    font-weight: bold;
    margin-bottom: 40px;
}

.plansDescription .plans {
    width: 100%;
    border-collapse: collapse;
}

table, th, td {
    border: 1px solid;
}

.plansDescription .plans th {
    font-size: 32px;
    font-weight: 400;
    padding: 14px 24px;
}

.plansDescription .plans td {
    font-size: 22px;
    font-weight: 300;
    padding: 10px 20px;
}

.plansDescription .plans .featureTitle {
    font-size: 22px;
    font-weight: 500;
}

.reviews .wrapper {
    max-width: 1092px;
    margin: 0 auto;
    padding: 40px 20px;
}

.reviews .wrapper>.title {
    font-size: 60px;
    font-weight: bold;
}

.reviews .wrapper>.description {
    font-size: 24px;
}

.reviews .carouselReview {
    margin: 40px 0;
    display: flex;
    gap: 3%;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
}

.reviews .from {
    margin-top: 20px;
}

.carouselReview::-webkit-scrollbar {
    display: none;
  }

.reviews .review {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    width: 22%;
    scroll-snap-align: center;
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    justify-content: space-between;
}

.reviews .review .stars {
    text-align: center;
    margin-bottom: 30px;
}

.reviews .rewards {
    display: flex;
    gap: 4%;
    width: 100%;
    margin-top: 40px;
}

.reviews .rewards .title {
    font-size: 44px;
    font-weight: bold;
}

.reviews .rewards .subtitle {
    text-align: left;
    font-size: 24px;
    padding: 0;
}

.reviews .rewards div {
    width: 30%;
    background: #fff;
    border-radius: 20px;
    padding: 20px;
}

.cta {
    background-color: rgba(188, 173, 244);
    padding: 40px 20px;
    text-align: center;
}

.cta .wrapper {
    max-width: 1092px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 54px;
    font-weight: bold;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 30px;
}

.cta a {
    margin: 40px auto;
}

footer {
    background-color: #D5C2E8;
    text-align: center;
    padding: 60px;
    font-size: 20px;
}

footer .legal p {
    display: inline;
}

footer a {
    color: #101011;
    text-decoration: none;
}

.image-placeholder {
    width: 100%;
    height: 300px;
    /* background-color: #ddd; */
    margin: 2rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
}

.content {
    max-width: 1092px;
    margin: 0 auto;
    padding: 40px 0;
}

.content .title {
    font-size: 34px;
    font-weight: bold;
    padding: 20px;
}

.content .subtitle {
    font-size: 24px;
    font-weight: 600;
    padding: 20px;
    margin: 0;
}

.content .text, .content .description {
    font-size: 20px;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .logo {
        font-size: 24px;
    }

    .features .subtitle {
        font-size: 30px;
        font-weight: 600;
    }

    .features .feature {
        flex-direction: column-reverse;
        text-align: center;
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .hero h1 {
        font-size: 44px;
    }
    
    .features .feature div:last-child {
        flex: unset;
    }

    .howItWorks .titleDescription {
        display: flex;
        flex-direction: column;
        gap: 5%;
        margin-bottom: 60px;
    }

    .howItWorks .titleDescription p:first-child {
        font-size: 30px;
    }

    .howItWorks .pointsGrid {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .plansDescription .title {
        font-size: 30px;
    }

    .plansDescription .plans th {
        font-size: 24px;
        padding: 6px 10px;
    }

    .plansDescription .plans td {
        font-size: 16px;
        font-weight: 300;
        padding: 6px 10px;
    }
    
    .plansDescription .plans .featureTitle {
        font-size: 18px;
        font-weight: 500;
    }

    .reviews .wrapper>.title {
        font-size: 30px;
        font-weight: bold;
    }

    .reviews .review {
        width: 60%;
    }

    .reviews .rewards {
        flex-direction: column;
        gap: 20px;
    }

    .reviews .rewards div {
        width: 90%;
    }

    .cta h2 {
        font-size: 30px;
    }
}