* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    width: 100%;
    overflow-x: hidden;
    font-family: 'Roboto', sans-serif
}

header {
    padding: 20px 70px;
    /* background-color: aqua; */
}

a {
    text-decoration: none;
    color: #000;
    cursor: pointer;
}

h1 {
    font-size: 2rem;
    color: #222;
}
li {
    margin-bottom: 0.75rem;
}
p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

ul {
    margin-left: 45px;
}
ol {
    margin-top: 1rem;
    padding-left: 1.2rem;
  }

.nav-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 100%;
}

.logo {
    width: 70px;
    height: 40px;
}

.store-icon {
    width: 130px;
    height: 40px;
}

.store-icon-container {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.service-img {
    height: 400px;
    width: 350px;
}

.service-title {
    font-size: 30px;
    font-weight: 700;
    text-align: center;
    width: 70%;
}

.service-title-container {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.delete-account-container {
    flex: 1;
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.service-description {
    font-size: 17px;
    text-align: center;
    width: 60%;
}

.service-txt-container {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    box-sizing: border-box;

}

.progress-indicator-container {
    margin-top: 30px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.circle {
    height: 8px;
    width: 8px;
    border-radius: 50px;
}

.active-circle {
    height: 8px;
    width: 8px;
    border-radius: 50px;
    background-color: #000;
}

.background-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 80vh;
    width: 100%;
}


.background-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 99%;
    height: 100%;
    max-width: 100vw;
    background-image: url('../images/98668.webp');
    background-repeat: no-repeat;
    background-position: center;
    transform: translate(-50%, -50%);
    transform-origin: center;
    opacity: 0.03;
    /* z-index: -1; */
}

.become-a-partner {
    display: flex;
    flex-direction: column;
    margin-top: 12vh;
    height: fit-content;
    background-color: #000;
    padding: 70px;
}

.bap-title {
    color: #fff;
    font-size: 30px;
    font-weight: 700;
}

.bap-description {
    margin-top: 30px;
    color: #fff;
    font-size: 17px;
    /* text-align: justify; */
    letter-spacing: .5px;
    width: 50%;
}

.join-us-btn {
    margin-top: 50px;
    padding: 10px 60px;
    background-color: #fff;
    cursor: pointer;
}

.join-us-btn-txt {
    font-size: 17px;
    font-weight: 700;
}

.footer {
    height: fit-content;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    background-color: #fff;
    padding: 35px 70px;
    justify-content: space-between;
    /* gap: 220px; */
}

.legal-footer {
    /* height: 30vh;
    display: flex;
    flex-direction: row; */
    background-color: #000;
    /* padding: 35px 70px;
    justify-content: space-between; */
}

.legal-footer-text {
    color: #fff;
}

.link-title {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 15px;
    /* color: #000; */
    width: 100%;
}

.link {
    margin-top: 8px;
}

.logo-footer {
    height: 25px;
    width: 40px;
    margin-bottom: 14px;
}

.address {
    margin-top: 2px;
    font-size: 15px;
}

.social-icons {
    display: flex;
    gap: 20px;
}

.icon {
    font-size: 20px;
}

.legal-container {
    display: flex;
    flex-direction: column;
    flex: 1;
    margin: 30px 350px;
}

.date-updated {
    font-weight: 600;
    margin-top: 20px;
}

.legal-section {
    margin-bottom: 60px;
}

.legal-content {
    margin-top: 60px;
}

.legal-section-title {
    font-weight: 600;
}

.legal-section-description {
    margin-top: 30px;
    letter-spacing: .5px;
    line-height: 25px;

}

.legal-sub-section-description {
    margin-top: 10px;
    letter-spacing: .5px;
    line-height: 25px;

}

.legal-section-ul-title {
    font-weight: 600;
}

.swiper-container {
    width: 100%;
    overflow: hidden;
    /* height: auto; */
}

.service-container {
    padding: 30px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 10px;
}

.service-txt-container {
    max-width: 50%;
}

/* responsive design */
@media (max-width: 490px) {
    .become-a-partner {
        display: flex;
        height: 40vh;
    }

    header {
        padding: 20px 20px;
    }

    .become-a-partner {
        padding: 40px 40px;
        height: fit-content;
    }

    .footer {
        gap: 35px;
        padding-right: 24px;
        padding-left: 25px;
    }

    .bap-description {
        width: 100%;
    }

    .logo {
        width: 45px;
        height: 30px;
    }

    .store-icon {
        width: 100px;
        height: 35px;
    }

    .store-icon-f {
        display: flex;
        gap: 15px;
    }

    .service-container {
        flex-direction: column;
        gap: 20px;
    }

    .service-img {
        order: -1;
    }

    .service-title {
        font-size: 23px;
        text-align: center;
        width: 270px;

    }

    .service-description {
        text-align: center;
        width: 250px;
    }

    .service-txt-container {
        margin-top: 50px;
    }

    .legal-footer {
        height: fit-content;
        width: fit-content;
    }

    .legal-container {
        margin: 30px 40px;
    }

}

@media (max-width: 600px) {
    .delete-account-container {
      margin: 20px;
      padding: 15px;
    }

    h1 {
      font-size: 1.5rem;
    }

    p, li {
      font-size: 0.95rem;
    }
  }

/* @media (max-width: 352px) {
    .footer {
        gap: 35px;
        padding-right:23px;
        padding-left: 40px;
    }
} */