:root {
    --color-primary: #0095da;
    --color-primary-dark: #0087c4;
    --color-accent: #ff4f00;
    --color-text: #222222;
    --color-text-muted: #737e8b;
    --color-white: #ffffff;
    --color-border: #e5e7eb;
    --container-padding: 20px;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
}

a {
    text-decoration: none;
}
.footer{
    display: none;
}
a:hover {
    text-decoration: none;
}
.mci-list-holder .mci-bullet-list > li::before{
    top:12px
}
.dpco-simcard.dpco-simcard--primary.border-none{
    border-top: 1px solid #e2e6ea;;
    flex-basis: 50%;
    min-height: 456px;
}
.dpco-simcard.dpco-simcard--accent.border-none{
    border-top: 1px solid #e2e6ea;;
     flex-basis: 50%;
    min-height: 456px;
}
.dpco-btn {
    min-height: 55px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border: 1px solid transparent;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.dpco-btn--primary {
    color: var(--color-white);
    background: var(--color-primary);
}

.dpco-btn--primary:hover {
    color: var(--color-white);
    background: var(--color-primary-dark);
}

.dpco-btn--outline {
    color: var(--color-primary);
    background: var(--color-white);
    border-color: var(--color-primary);
}

.dpco-btn--outline:hover {
    color: var(--color-white);
    background: var(--color-primary);
}

.dpco-btn,
.dpco-simcard__button,
.dpco-activation-card__button {
    position: relative;
    overflow: hidden;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background-color 0.3s ease,
        border-color 0.3s ease;
}

.dpco-btn::before,
.dpco-simcard__button::before,
.dpco-activation-card__button::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -75%;
    width: 45%;
    height: 200%;
    z-index: -1;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.28),
        transparent
    );
    transform: rotate(20deg);
    transition: left 0.55s ease;
}

.dpco-btn:hover,
.dpco-simcard__button:hover,
.dpco-activation-card__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 158, 227, 0.18);
}

.dpco-btn:hover::before,
.dpco-simcard__button:hover::before,
.dpco-activation-card__button:hover::before {
    left: 130%;
}

.dpco-btn:active,
.dpco-simcard__button:active,
.dpco-activation-card__button:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition-duration: 0.1s;
}

.dpco-btn--outline,
.dpco-activation-card__button--outline {
    position: relative;
    color: var(--color-primary);
    background: transparent;
    border: 2px solid var(--color-primary);
    overflow: hidden;
    transition:
        color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.dpco-btn--outline::after,
.dpco-activation-card__button--outline::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 0;
    z-index: -1;
    background: var(--color-primary);
    transition: height 0.3s ease;
}

.dpco-btn--outline:hover,
.dpco-activation-card__button--outline:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(0, 158, 227, 0.16);
}

.dpco-btn--outline:hover::after,
.dpco-activation-card__button--outline:hover::after {
    height: 100%;
}

.dpco-activation-card__button svg {
    transition: transform 0.3s ease;
}

.dpco-activation-card__button:hover svg {
    transform: translateX(-3px);
}
.dpco-hero {
    background: linear-gradient(
        110deg,
        #fff6f4 0%,
        #ffffff 48%,
        #eefaff 100%
    );
}

.dpco-hero__container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 80px;
    padding: 55px 0;
}

.dpco-hero__content {
    flex: 0 1 60%;
}

.dpco-hero__visual {
    display: flex;
    align-items: center;
    justify-content: end;
    flex: 0 1 40%;
}

.dpco-hero__badge {
    display: inline-flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 10px 12px;
    color: var(--color-primary);
    background: #fff1f2;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
}

.dpco-hero__title {
    margin: 0 0 14px;
    font-size: 40px;
    line-height: 1.5;
    font-weight: 800;
}

.dpco-hero__description {
    color: var(--color-text-muted);
    font-size: 20px;
    line-height: 2;
}

.dpco-hero__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
}

.dpco-section-heading {
    margin: 0 auto 38px;
    text-align: center;
}

.dpco-section-heading__title {
    margin: 0;
    color: var(--color-text);
    font-size: 30px;
    font-weight: 700;
    line-height: 1.6;
}

.dpco-section-heading__description {
    margin: 8px 0 0;
    color: var(--color-text-muted);
    font-size: 18px;
    line-height: 3;
}
.dpco-simcards {
    padding: 60px 0 70px;
    background: #ffffff;
}

.dpco-simcards__list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}
.dpco-simcard {
    --dpco-card-color: var(--color-primary);
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 34px 25px 22px;
    background: #ffffff;
    border: 1px solid #e2e6ea;
    border-top: 5px solid var(--dpco-card-color);
    border-radius: 15px;
}
.dpco-simcard--primary {
    --dpco-card-color: var(--color-primary);
}

.dpco-simcard--accent {
    --dpco-card-color: var(--color-accent);
}
.dpco-simcard__badge {
    position: absolute;
    top: -20px;
    right: 18px;
    min-height: 27px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    color: #ffffff;
    background: var(--dpco-card-color);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}
.dpco-simcard__header {
    margin: 10px 0;
}
.dpco-simcard__title {
    margin: 0;
    color: #222222;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.7;
}
.dpco-simcard__description {
    margin: 12px 0 0;
    color: #757f8a;
    font-size: 14px;
    line-height: 2;
    font-weight: 500;
}
.dpco-simcard__features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 0 0 22px;
    padding: 0;
    list-style: none;
}
.dpco-simcard__feature {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    color: #222222;
    font-size: 15px;
    line-height: 1.8;
}
.dpco-simcard__check {
    margin-top: 5px;
    color: var(--dpco-card-color);
}
.dpco-simcard__check svg {
    width: 20px;
    height: 20px;
    display: block;
}
.dpco-simcard__button {
    position: relative;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    padding: 10px 20px;
    color: #ffffff;
    background: var(--dpco-card-color);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    overflow: hidden;
    box-shadow: 0 5px 13px rgba(0, 0, 0, 0.13);
}

.dpco-simcard__button:hover {
    color: #ffffff;
}
.dpco-comparison-section {
    padding: 60px 0 70px;
    background: #faf8f6;
}
.dpco-table-scroll {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 5px;
    -webkit-overflow-scrolling: touch;
}
.dpco-compare-table {
    min-width: auto;
    background: #ffffff;
    border: 1px solid #e4e8eb;
    border-radius: 14px;
    overflow: hidden;
}
.dpco-compare-table__row {
    min-height: 49px;
    display: flex;
    align-items: stretch;
    border-bottom: 1px solid #e4e8eb;
}
.dpco-compare-table__row:last-child {
    border-bottom: 0;
}
.dpco-compare-table__row:nth-child(odd):not(.dpco-compare-table__row--head) {
    background: #ffffff;
}
.dpco-compare-table__row:nth-child(even):not(.dpco-compare-table__row--head) {
    background: #faf8f6;
}
.dpco-compare-table__row--head {
    min-height: 55px;
    color: #ffffff;
    background: var(--color-primary);
    border-bottom: 0;
}
.dpco-compare-table__cell {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    color: #222222;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.8;
    text-align: center;
}
.dpco-compare-table__row--head .dpco-compare-table__cell {
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
}
.dpco-compare-table__cell--feature {
    flex: 0 0 28%;
    justify-content: flex-start;
    color: #276bb7;
    font-weight: 600;
    text-align: right;
}
.dpco-compare-table__row--head .dpco-compare-table__cell--feature {
    color: #ffffff;
}
.dpco-compare-table__cell .ussd-code-widget {
    margin: 0 6px;
}
.dpco-table-scroll::-webkit-scrollbar {
    height: 6px;
}
.dpco-table-scroll::-webkit-scrollbar-track {
    background: #eeeeee;
    border-radius: 10px;
}
.dpco-table-scroll::-webkit-scrollbar-thumb {
    background: #b7bdc3;
    border-radius: 10px;
}
.dpco-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.dpco-status--positive {
    color: #14946c;
    font-weight: 600;
}
.dpco-status--negative {
    color: #222222;
}
.dpco-status__icon {
    flex: 0 0 16px;
    width: 16px;
    height: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
}
.dpco-status--positive .dpco-status__icon {
    color: #14946c;
}
.dpco-status__icon svg {
    width: 100%;
    height: 100%;
    display: block;
}
.dpco-method-section {
    padding: 60px 0 70px;
    direction: rtl;
    background: #ffffff;
}
.dpco-method-list {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 26px;
}
.dpco-method-card {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    padding: 30px;
    background: #ffffff;
    border: 1px solid #dde2e6;
    border-radius: 16px;
}
.dpco-method-card__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
}
.dpco-method-card__title {
    margin: 0;
    color: #222222;
    font-size: 19px;
    font-weight: 700;
}
.dpco-method-card__steps {
    margin: 0;
    padding: 0;
    list-style: none;
}
.dpco-method-card__step {
    min-height: 56px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: #222222;
    border-bottom: 1px dashed #d9dfe4;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.8;
}
.dpco-method-card__number {
    flex: 0 0 18px;
    color: var(--color-primary);
    font-size: 15px;
    font-weight: 700;
}
.dpco-method-card__links {
    margin-bottom: 24px;
}
.dpco-method-link {
    min-height: 56px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 0;
    border-bottom: 1px dashed #d9dfe4;
}
.dpco-method-link__bullet {
    width: 8px;
    height: 8px;
    flex: 0 0 8px;
    background: var(--color-primary);
    transform: rotate(45deg);
}
.dpco-method-link__title {
    color: #222222;
    font-size: 14px;
    font-weight: 500;
}
.dpco-method-link__url {
    margin-right: auto;
    padding: 4px 10px;
    color: var(--color-primary);
    background: #fff0f0;
    border-radius: 5px;
    direction: ltr;
    font-size: 12px;
}
.dpco-method-card__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 23px;
}
.dpco-action-button {
    min-height: 55px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 10px 18px;
    border: 2px solid var(--color-primary);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    transition:
        background-color 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}
.dpco-action-button--primary {
    color: #ffffff;
    background: var(--color-primary);
}
.dpco-action-button--outline {
    color: var(--color-primary);
    background: #ffffff;
}
.dpco-action-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 7px 15px rgba(0, 149, 218, 0.15);
}
.dpco-action-button--primary:hover {
    color: #ffffff;
    background: #0087c4;
}
.dpco-action-button--outline:hover {
    color: #ffffff;
    background: var(--color-primary);
}
.dpco-method-card__icon {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    background: #fff0f0;
    border-radius: 9px;
}
.dpco-method-card__icon svg {
    width: 20px;
    height: 20px;
}
.dpco-info-box {
    margin-top: auto;
    padding: 17px 20px;
    background: #edf9fc;
    border-radius: 12px;
}
.dpco-info-box__text {
    margin: 0;
    color: #12657c;
    font-size: 14px;
    line-height: 2;
}
.dpco-info-box__highlight {
    color: #ff4f00;
    font-weight: 700;
}
.dpco-benefits-section {
    padding: 55px 0 60px;
    background: linear-gradient(
        110deg,
        #148ee8 0%,
        #159ce2 50%,
        #25a8df 100%
    );
}
.dpco-section-heading--light .dpco-section-heading__title,
.dpco-section-heading--light .dpco-section-heading__description {
    color: #ffffff;
}
.dpco-benefits-swiper {
    overflow: visible;
}
.dpco-benefit-list {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 14px;
    margin: 0 auto;
}
.dpco-benefit-card {
    flex: 1;
    min-height: 180px;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 5px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 12px;
    text-align: center;
    transition:
        transform 0.3s ease,
        background-color 0.3s ease,
        box-shadow 0.3s ease;
}
.dpco-benefit-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.14);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
}
.dpco-benefit-card__icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}
.dpco-benefit-card__icon svg {
    width: 100%;
    height: 100%;
    display: block;
}
.dpco-benefit-card__text {
    margin: 0;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.9;
}
.dpco-benefits-pagination {
    display: none;
}
.dpco-faq-section {
    padding: 60px 0 70px;
    direction: rtl;
    background: #ffffff;
}
.dpco-faq-section .dpco-section-heading {
    max-width: 720px;
    margin: 0 auto 45px;
    text-align: center;
}
.dpco-faq-section .dpco-section-heading__title {
    margin: 0;
    color: #222222;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.6;
}
.dpco-faq-section .dpco-section-heading__description {
    margin: 15px 0 0;
    color: #75808c;
    font-size: 18px;
    line-height: 2;
}
.dpco-accordion__item {
    margin-bottom: 14px;
    background: #ffffff;
    border: 1px solid #dfe4e8;
    border-radius: 12px;
    overflow: hidden;
    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}
.dpco-accordion__item:last-child {
    margin-bottom: 0;
}
.dpco-accordion__item--active {
    border-color: rgba(0, 149, 218, 0.35);
    box-shadow: 0 6px 18px rgba(0, 149, 218, 0.06);
}
.dpco-accordion__button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    color: #222222;
    background: transparent;
    border: 0;
    outline: 0;
    font-family: inherit;
    text-align: right;
    cursor: pointer;
}
.dpco-accordion__title {
    color: #222222;
    font-size: 15px;
    font-weight: 700;
    line-height: 2;
}
.dpco-accordion__icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    transition: transform 0.3s ease;
}
.dpco-accordion__icon svg {
    width: 100%;
    height: 100%;
}
.dpco-accordion__item--active .dpco-accordion__icon {
    transform: rotate(45deg);
}
.dpco-accordion__content {
    display: none;
}
.dpco-accordion__body {
    padding: 0 24px 22px;
    color: #666666;
    font-size: 14px;
}
.dpco-simcard__button:focus{
    color: #fff;
}
.dpco-btn:focus,
.dpco-simcard__button:focus,
.dpco-action-button:focus,
.dpco-activation-card__button:focus,
.dpco-accordion__button:focus {
    outline: none;
    text-decoration: none;

}
.dpco-btn:focus-visible,
.dpco-simcard__button:focus-visible,
.dpco-action-button:focus-visible,
.dpco-activation-card__button:focus-visible,
.dpco-accordion__button:focus-visible {
    outline: 3px solid rgba(0, 149, 218, 0.3);
    outline-offset: 3px;
}
.dpco-btn--primary:focus,
.dpco-btn--primary:focus-visible,
.dpco-action-button--primary:focus,
.dpco-action-button--primary:focus-visible {
    color: var(--color-white);
    background: var(--color-primary);
}
.dpco-btn--outline:focus,
.dpco-btn--outline:focus-visible{
    color: var(--color-primary);
}
.dpco-btn--outline:hover{
    color:var(--color-white);
}

.dpco-action-button--outline:focus,
.dpco-action-button--outline:focus-visible {
    color: var(--color-primary);
    background: var(--color-white);
}
.dpco-benefits-pagination {
    display: none;
}
@media (max-width: 992px) {

    .dpco-hero__container {
        flex-wrap: wrap;
    }

    .dpco-hero__content {
        flex: 0 1 100%;
    }

    .dpco-hero__visual {
        justify-content: center;
        flex: 0 1 100%;
    }

    .dpco-simcards {
        padding: 50px 0;
    }

    .dpco-simcards__list {
        max-width: 720px;
        gap: 18px;
    }

    .dpco-simcard {
        padding: 32px 20px 20px;
    }
}
@media (max-width: 900px) {

    .dpco-benefit-list {
        flex-wrap: wrap;
    }

    .dpco-benefit-card {
        flex: 0 0 calc(50% - 8px);
    }

    .dpco-method-list {
        gap: 18px;
    }

    .dpco-method-card {
        padding: 24px;
    }
}
@media (max-width: 768px) {

    .dpco-comparison-section {
        padding: 45px 0;
    }

    .dpco-section-heading {
        margin-bottom: 30px;
    }

    .dpco-section-heading__title {
        font-size: 22px;
    }

    .dpco-compare-table {
        min-width: 610px;
    }

    .dpco-compare-table__cell {
        padding: 11px 15px;
        font-size: 12px;
    }

    .dpco-btn {
        padding: 10px 14px;
    }

    .dpco-hero__container {
        padding: 25px 0;
    }


    .dpco-benefits-swiper {
        width: 100%;
        overflow: hidden;
    }

    .dpco-benefit-list {
        flex-wrap: nowrap;
        flex-direction: row;
        justify-content: flex-start;
        gap: 0;
    }

    .dpco-benefit-card {
        flex: none;
        width: auto;
        height: auto;
    }
    .dpco-benefit-card:hover{
        transform: none;
        background: rgba(255, 255, 255, 0.09);
        box-shadow: none;
    }
    .dpco-benefits-pagination {
        display: flex;
        position: relative;
        margin-top: 28px;
        text-align: center;
        justify-content: center;
    }

    .dpco-benefits-pagination .swiper-pagination-bullet {
        width: 15px;
        height: 15px;
        margin: 0 4px;
        background: #fff;
        opacity: 0.5;
        border-radius: 50px;
}

    .dpco-benefits-pagination .swiper-pagination-bullet-active {
         width: 15px;
        height: 15px;
        border-radius: 10px;
        opacity: 1;
    }
    .mci-bullet-list li, .acc_item .acc_content ul.mci-numbred-list li, ul.mci-numbred-list li{
        font-size: 14px;
    }
}
@media (max-width: 700px) {

    .dpco-faq-section {
        padding: 42px 0;
    }

    .dpco-faq-section .dpco-section-heading {
        margin-bottom: 30px;
    }

    .dpco-faq-section .dpco-section-heading__title {
        font-size: 21px;
    }

    .dpco-faq-section .dpco-section-heading__description {
        font-size: 14px;
    }

    .dpco-accordion__button {
        min-height: 65px;
        padding: 16px 10px;
    }

    .dpco-accordion__title {
        font-size: 13px;
    }

    .dpco-accordion__icon {
        width: 18px;
        height: 18px;
        flex-basis: 18px;
    }

    .dpco-accordion__body {
        padding: 0 10px 10px;
        font-size: 13px;
        line-height: 2.2;
    }

    .dpco-method-section {
        padding: 42px 0;
    }

    .dpco-section-heading {
        margin-bottom: 35px;
    }

    .dpco-section-heading__title {
        font-size: 21px;
    }

    .dpco-method-list {
        flex-direction: column;
        gap: 16px;
    }

    .dpco-method-card {
        width: 100%;
        padding: 20px;
        border-radius: 12px;
    }

    .dpco-method-card__header {
        margin-bottom: 16px;
    }

    .dpco-method-card__title {
        font-size: 16px;
    }

    .dpco-method-card__step {
        min-height: 48px;
        font-size: 12px;
    }

    .dpco-method-link {
        min-height: 48px;
    }

    .dpco-method-link__title {
        font-size: 12px;
    }

    .dpco-method-link__url {
        font-size: 11px;
    }

    .dpco-method-card__actions {
        justify-content: center;
    }

    .dpco-action-button {
        min-height: 48px;
        padding: 8px 14px;
        font-size: 12px;
    }

    .dpco-info-box {
        padding: 14px 16px;
    }

    .dpco-info-box__text {
        font-size: 13px;
    }

    .dpco-simcards {
        padding: 42px 0;
    }

    .dpco-simcards__list {
        flex-direction: column;
        gap: 30px;
    }

    .dpco-simcard {
        width: 100%;
        min-height: 0;
        padding: 32px 20px 20px;
    }

    .dpco-simcard__description {
        text-align: justify;
    }

    .dpco-hero__visual {
        display: none;
    }

    .dpco-hero__title {
        font-size: 30px;
    }
}
@media (max-width: 600px) {

    .dpco-benefits-section {
        padding: 38px 0;
    }

    .dpco-section-heading {
        margin-bottom: 28px;
    }

    .dpco-section-heading__title {
        font-size: 16px;
    }

    .dpco-section-heading__description {
        font-size: 14px;
    }

    /* مهم: برای Swiper نباید column باشد */

    .dpco-benefit-list {
        flex-direction: row;
        flex-wrap: nowrap;
    }

    .dpco-benefit-card {
        width: auto;
        min-height: 120px;
        flex: none;
        padding: 14px 16px;
        border-radius: 9px;
    }

    .dpco-benefit-card__icon {
        width: 40px;
        height: 40px;
    }

    .dpco-benefit-card__text {
        font-size: 14px;
    }
}
@media (max-width: 500px) {

    .dpco-hero__title {
        font-size: 25px;
    }
}
@media (max-width: 480px) {

    .dpco-section-heading__title {
        font-size: 16px;
    }

    .dpco-simcard__title {
        font-size: 17px;
    }

    .dpco-simcard__feature {
        font-size: 14px;
    }

    .dpco-simcard__button {
        min-height: 44px;
    }

    .dpco-hero__title {
        font-size: 20px;
    }

    .dpco-hero__description {
        text-align: justify;
        font-size: 16px;
    }
}
@media (max-width: 420px) {

    .dpco-method-card {
        padding: 18px;
    }

    .dpco-method-link {
        gap: 7px;
    }

    .dpco-method-link__url {
        padding: 3px 7px;
    }

    .dpco-method-card__actions {
        gap: 8px;
    }

    .dpco-action-button {
        padding: 8px 12px;
    }
}