.partner-section, .oem-section, .fulfillment-section, .contact-section, .service-section, .sign-up-section {
    display: flex;
    align-items: center;
    width: 80%;
    margin: 0 auto;
    margin-bottom: 60px;
}

.partner-section {
    margin-top: 40px;
    background-color: #FCF5FF;
    padding: 20px;
    box-sizing: border-box;
}

.partner-image, .oem-image, .fulfillment-image {
    width: 45%;
    margin-right: 20px;
}

.partner-details, .oem-details, .fulfillment-details {
    flex: 2;
}

.partner-image img, .oem-image img, .fulfillment-image img {
    width: 100%;
    height: auto;
}

.partner-section h2, .oem-section h2, .fulfillment-section h2, .contact-section h2 {
    position: relative;
    margin-top: 0;
    font-size: 30px;
    color: #333;
    font-weight: bold;
}

.partner-section h2::after, .oem-section h2::after, .fulfillment-section h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 55px;
    height: 2px;
    background: #660099;
}

.contact-section h2 {
    color: #fff;
}

.contact-section .contact-content {
    width: 100%;
}

.partner-section .sub-title {
    font-size: 20px;
    margin-top: 15px;
}

.partner-details ul, .oem-details ul, .fulfillment-details ul {
    margin-top: 20px;
    font-weight: bold;
    font-size: 18px;
    color: #333;
}

.checkmark {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: #4BD37B;
    margin-right: 10px;
    border-radius: 100%;
}

.checkmark::after {
    content: "";
    display: block;
    width: 4px;
    height: 10px;
    border: solid #fff;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
    margin: 2px 0 0 6px;
}

.oem-section {
    flex-direction: row-reverse;
}

.fulfillment-section {
    background-color: #FCF5FF;
    padding: 20px;
    box-sizing: border-box;
}

.contact-section {
    background: linear-gradient(0deg, #12B1A6, #5CD46A);
    color: white;
    text-align: center;
    padding: 40px 0;
}

.contact-content p {
    margin: 10px 0 20px;
}

.contact-button {
    padding: 10px 20px;
    background-color: white;
    color: #00bfa5;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    margin: 0 auto;
}

.contact-button:hover {
    background-color: #e7e7e6;
}

.contact-button img {
    display: inline;
    margin-left: 10px;
}

.service-section {
    justify-content: center;
    padding: 20px 0;
}

.footer-icons {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.icon-item {
    align-items: center;
    width: 20%;
    text-align: center;
}

.icon-item > * {
    display: block;
}

.icon-item img {
    margin: 0 auto;
}

.icon-item span {
    margin-top: 20px;
    color: #333;
}

.sign-up-section {
    display: block;
    text-align: center;
}

.sign-up-section h2 {
    font-size: 30px;
    color: #660099;
    font-weight: bold;
}

.sign-up-section p {
    font-size: 20px;
    color: #333333;
    margin-top: 20px;
}

.sign-up-section > a {
    position: relative;
    margin-top: 25px;
    display: inline-block;
    background: #660099;
    color: #fff;
    padding: 15px 50px;
    border-radius: 10px;
}

.sign-up-section > a:hover {
    background: #8e07d1;
}

.sign-up-section > a::after {
    content: "";
    position: absolute;
    bottom: -18px;
    right: -30px;
    width: 60px;
    height: 60px;
    background-image: url(https://www.mychway.com/image/catalog/2025/activity/agency/join_group_icon.webp);
    background-size: contain;
    background-repeat: no-repeat;
}

@media screen and (max-width: 768px) {
    .partner-section, .oem-section, .fulfillment-section, .contact-section, .service-section, .sign-up-section {
        width: 96%;
        flex-wrap: wrap;
        padding: 10px;
        margin-bottom: 30px;
        box-sizing: border-box;
    }

    .partner-image, .oem-image, .fulfillment-image {
        width: 100%;
        margin-right: 0;
    }

    .partner-section h2, .oem-section h2, .fulfillment-section h2 {
        color: #660099;
    }

    .partner-section {
        margin-top: 20px;
    }

    .contact-section {
        box-sizing: border-box;
        padding: 15px 10px;
    }

    .icon-item {
        width: 100%;
        background: #FCF5FF;
        margin-top: 10px;
        border-radius: 10px;
        display: flex;
        padding: 10px 0;
        padding-left: 20%;
    }

    .icon-item img {
        margin: 0;
        margin-right: 10px;
    }

    .icon-item span {
        margin-top: 0;
    }

}