.dtp-wrap {
    background: #fff;
    /*padding: 70px 20px 60px;*/
    /*font-family: 'Nunito Sans', 'Arial', sans-serif;*/
}
.dtp-topbar {
    width: 180px;
    height: 4px;
    background: #c94b8a;
    margin: 0 auto 28px;
    border-radius: 2px;
}
.dtp-heading {
    text-align: center;
    margin-bottom: 44px;
}
.dtp-heading h2 {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.25;
    margin: 0;
    color: #3a2d3e;
    letter-spacing: -0.3px;
}
.dtp-heading h2 .pk { color: #8b2878; }

.dtp-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    max-width: 1320px;
    margin: 0 auto;
}

.dtp-card {
    background: #fce9f1;
    border: 1.5px solid #e9c0d4;
    border-radius: 16px;
    padding: 26px 12px 0;
    text-align: center;
    display: block;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    overflow: hidden;
    min-height: 185px;
}

.dtp-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 28px rgba(180,60,120,0.18);
    text-decoration: none;
}
/* bottom white scallop */
.dtp-card::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0; left: -2px; right: -2px;
    height: 34px;
    background: #fff;
    border-top: 1.5px solid #e9c0d4;
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}
.dtp-card-inner { padding-bottom: 30px; }

.dtp-icon {
    width: 76px;
    height: 76px;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.dtp-icon svg {
    width: 76px;
    height: 76px;
}

.dtp-label {
    font-size: 14px;
    font-weight: 800;
    color: #2e2233;
    line-height: 1.4;
    margin-bottom: 28px;
    display: block;
}

@media (max-width: 1100px) {
    .dtp-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 680px) {
    .dtp-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
    .dtp-heading h2 { font-size: 24px; }
    .dtp-icon { width: 56px; height: 56px; }
    .dtp-icon svg { width: 56px; height: 56px; }
    .dtp-label { font-size: 12px; }
}