.dw-hero {
    padding: calc(10vh + 40px) 2rem 5vh;
    text-align: center;
    background: linear-gradient(to bottom, #4361ee, #3a0ca3);
    color: white;
    position: relative;
    overflow: hidden;
    height: auto;
    min-height: 300px;
}

.hero-content {
    max-width: 70%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.hero-inner-content {
    flex: 0 0 70%;
    max-width: 70%;
}

.hero-image {
    flex: 0 0 30%;
    max-width: 30%;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.dw-hero h1 {
    text-align: left !important;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.dw-hero p {
    text-align: left;
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    text-align: left;
}

.General-Content {
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 60px;
    text-align: left;
    clear: both;
    box-sizing: border-box;
    padding-left: 2rem;
    padding-right: 2rem;
}

@media (max-width: 768px) {
    .General-Content {
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
        padding-left: 1.2rem;
        padding-right: 1.2rem;
        box-sizing: border-box;
    }

    .dw-hero {
        padding: 8vh 1.2rem 4vh;
        text-align: center;
        min-height: auto;
    }

    .hero-content {
        flex-direction: column;
        max-width: 100%;
        gap: 1.5rem;
        text-align: left;
    }

    .hero-inner-content {
        flex: 1 1 100%;
        max-width: 100%;
        text-align: center;
    }

    .hero-image {
        flex: 1 1 100%;
        max-width: 90%;
        margin: 0 auto;
    }

    .hero-image img {
        border-radius: 10px;
        max-width: 100%;
        height: auto;
    }

    .dw-hero h1 {
        font-size: 1.6rem;
        line-height: 1.3;
        margin-bottom: 1rem;
        text-align: left !important;
    }

    .dw-hero p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
        text-align: left;
    }

    .hero-btns {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0.8rem;
        margin-top: 1.5rem;
        text-align: center;
    }

    .hero-btns a,
    .hero-btns button {
        font-size: 1rem;
        padding: 0.8rem 1.4rem;
    }
}

@media (max-width: 480px) {
    .General-Content {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .dw-hero h1 {
        font-size: 1.4rem;
    }

    .dw-hero p {
        font-size: 0.95rem;
    }

    .hero-btns a,
    .hero-btns button {
        font-size: 0.95rem;
        padding: 0.7rem 1.2rem;
    }
}

.General-Content h1,
.General-Content h2,
.General-Content h3 {
    text-align: left;
}

.General-Content h2 {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 20px;
}

.General-Content h3 {
    font-size: 1.7rem;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 20px;
}

.General-Content p {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.card-image img {
    border-radius: 8px;
}

.card-content {
    margin-top: 20px;
}

.card-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #4361ee;
    margin-bottom: 10px;
}

.card-description {
    font-size: 1.1rem;
    color: #555;
}

.card-button .action-button {
    background-color: #4361ee;
    border: none;
    color: white;
    padding: 12px 25px;
    font-size: 1rem;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.card-button .action-button:hover {
    background-color: #3a0ca3;
}

.pros-cons-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.pros-list, .cons-list {
    flex: 1;
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.pros-list {
    background-color: #e0f7fa;
}

.cons-list {
    background-color: #fbe9e7;
}

.pros-list h3, .cons-list h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4361ee;
    margin-bottom: 15px;
    text-align: center;
}

.pros-list ul, .cons-list ul {
    list-style: none;
    padding: 0;
}

.pros-list li, .cons-list li {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.pros-list li::before, .cons-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.5rem;
}

.pros-list li {
    color: #4caf50;
}

.cons-list li {
    color: #f44336;
}

.pros-list li i {
    color: #4caf50;
    font-size: 1.5rem;
    margin-right: 15px;
    position: absolute;
    left: 0;
    top: 5px;
}

.cons-list li i {
    color: #f44336;
    font-size: 1.5rem;
    margin-right: 15px;
    position: absolute;
    left: 0;
    top: 5px;
}

.pros-list li:hover, .cons-list li:hover {
    background-color: #f0f9ff;
    cursor: pointer;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .pros-cons-container {
        flex-direction: column;
    }

    .pros-list, .cons-list {
        margin-bottom: 20px;
    }

    .pros-list h3, .cons-list h3 {
        font-size: 1.3rem;
    }

    .pros-list li, .cons-list li {
        font-size: 1rem;
    }
}


.card-content {
    margin-top: 15px;
}

.card-description {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.Back {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.Back img {
    width: 80%;
    max-width: 500px;
    height: auto;
    margin: 0 auto;
    display: block;
    border-radius: 8px;
    margin-bottom: 30px;
}

.back-agencies {
    width: 100%;
    min-height: 140px;
    background: url('/background-picture/agencies.png') no-repeat center center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    margin: 32px 0 24px 0;
    border-radius: 12px;
    box-sizing: border-box;
    padding: 20px 0 16px 32px;
    box-shadow: 0 4px 16px rgba(67,97,238,0.08);
}

.agencies-title {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.18);
    letter-spacing: 1px;
    text-align: left;
    width: 100%;
}

.agency-icons {
    display: flex;
    gap: 40px;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    margin-top: 2px;
}

.agency-icon {
    width: 120px;
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.85);
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(67,97,238,0.12);
    padding: 18px;
    transition: box-shadow 0.2s, transform 0.2s;
}
.agency-icon:hover {
    box-shadow: 0 8px 24px rgba(67,97,238,0.18);
    transform: translateY(-2px) scale(1.10);
}

.agency-icon img {
    max-width: 100px;
    max-height: 72px;
    object-fit: contain;
    display: block;
}

.Bonuses {
    width: 100%;
    display: flex;
    gap: 20px;
    margin: 20px 0;
}

.Bonuses-img {
    flex: 0 0 15%;
    max-width: 15%;
    padding: 15px;
}

.Bonuses-img img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

.Bonuses-content {
    flex: 0 0 85%;
    max-width: 85%;
    padding: 15px;
}

@media (max-width: 768px) {
    .back-agencies {
        padding: 16px 0 12px 10px;
    }
    .agencies-title {
        color: #ffb300;
        text-shadow: 0 2px 8px rgba(0,0,0,0.28);
    }
    .agency-icons {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    .agency-icon {
        width: 80vw;
        max-width: 320px;
        height: 72px;
        padding: 10px;
    }
    .agency-icon img {
        max-width: 70vw;
        max-height: 56px;
    }

    .Bonuses {
        flex-direction: column;
    }
    .Bonuses-img {
        flex: 0 0 auto;
        max-width: 200px;
        margin: 0 auto 20px;
    }
    .Bonuses-content {
        flex: 0 0 auto;
        max-width: 100%;
    }
}

.bonus-section {
  padding: 60px 20px;
  text-align: center;
}
.bonus-section .section-title {
  font-size: 2rem;
  color: #222;
  margin-bottom: 20px;
}
.bonus-section .intro-text {
  max-width: 800px;
  margin: 0 auto 40px;
  color: #555;
  font-size: 1.05rem;
  line-height: 1.6;
}
.bonus-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  max-width: 70%;
  margin: 0 auto;
}
.bonus-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.08);
  padding: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.bonus-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}
.bonus-card img {
  width: 70px;
  height: auto;
  margin-bottom: 15px;
}
.bonus-card h3 {
  font-size: 1.3rem;
  color: #222;
  margin-bottom: 10px;
}
.bonus-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}
.cta-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 22px;
  font-weight: 600;
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  background: linear-gradient(90deg, #ff7300, #ffae00);
  transition: opacity 0.3s ease;
}
.cta-btn:hover {
  opacity: 0.85;
}
.bonus-footer {
  margin-top: 40px;
  font-size: 1rem;
  color: #333;
}
.bonus-footer a {
  color: #ff7300;
  text-decoration: underline;
}
@media (max-width: 992px) {
  .bonus-cards {
    max-width: 90%;
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .bonus-section {
    padding: 40px 15px;
  }
  .bonus-card {
    padding: 20px;
  }
}

.FAQ {
  width: 80%;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
  margin-top: 100px;
}

.FAQ h2 {
  text-align: center;
  font-size: 24px;
  color: #333;
  margin-bottom: 20px;
}

details {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,.05);
  margin: 24px 0;
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}
details:hover {
  box-shadow: 0 6px 16px rgba(0,0,0,.08);
  border-color: #d1d5db;
}

details > summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 28px 32px;
  font-weight: 600;
  color: #111827;
  user-select: none;
}
details > summary::-webkit-details-marker { display: none; }

details > summary::after {
  content: "";
  width: .6rem;
  height: .6rem;
  border-right: 2px solid #111;
  border-bottom: 2px solid #111;
  transform: rotate(-45deg);
  transition: transform .25s ease;
  margin-left: auto;
}
details[open] > summary::after {
  transform: rotate(45deg);
}

details > *:not(summary) {
  padding: 28px 32px 32px;
  color: #4b5563;
  line-height: 1.8;
  animation: fadeDown .25s ease;
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

.cards-tuijian {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
}

.card-link {
    text-decoration: none;
    width: 100%;
    max-width: none;
    display: block;
    transition: transform 0.3s ease;
}

.card-link:hover {
    transform: translateY(-10px);
}

.cardd {
    border: 2px solid #e0e0e0;
    border-radius: 16px;
    overflow: hidden;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card-link:hover .cardd {
    border-color: #3498db;
    box-shadow: 0 15px 35px rgba(52, 152, 219, 0.2);
}

.upper-section {
    display: flex;
    align-items: center;
    padding: 20px;
    background: #f8f9fa;
    border-bottom: 2px solid #eee;
}

.image-container {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    margin-right: 15px;
    flex-shrink: 0;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.card-link:hover .image-container img {
    transform: scale(1.1);
}

.product-name {
    flex-grow: 1;
    text-align: left;
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
}

.arrow {
    font-size: 1.8rem;
    color: #95a5a6;
    transition: all 0.3s ease;
}

.card-link:hover .arrow {
    color: #3498db;
    transform: translateX(5px);
}

.lower-section {
    padding: 25px 20px;
    text-align: left;
    color: #34495e;
    line-height: 1.6;
    flex-grow: 1;
}

.card-link p {
    margin-bottom: 15px;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .cards-tuijian {
        flex-direction: column;
        align-items: center;
    }

    h1 {
        font-size: 2rem;
    }
}

.table-container {
    overflow-x: auto;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    max-width: 100%;
    background-color: white;
    scrollbar-width: thin;
}

.table-container::-webkit-scrollbar {
    height: 8px;
}
.table-container::-webkit-scrollbar-thumb {
    background: rgba(120, 120, 200, 0.3);
    border-radius: 4px;
}
.table-container::-webkit-scrollbar-thumb:hover {
    background: rgba(120, 120, 200, 0.6);
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 500px;
}

th {
    background: linear-gradient(to right, #6a11cb, #2575fc);
    color: white;
    font-weight: 600;
    text-align: left;
    padding: 18px 20px;
    font-size: 1.1rem;
    white-space: nowrap;
}

th:first-child {
    border-top-left-radius: 15px;
}

th:last-child {
    border-top-right-radius: 15px;
}

td {
    padding: 16px 20px;
    color: #34495e;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    vertical-align: middle;
}

tr:nth-child(even) {
    background-color: white;
}

tr:nth-child(odd) {
    background-color: #f8f4ff;
}

tr:hover td {
    background-color: #e9e1ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

tr:hover td:first-child {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

tr:hover td:last-child {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

@media (max-width: 900px) {
    .table-container {
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        margin: 0 1rem;
    }

    table {
        min-width: 600px;
    }

    th, td {
        padding: 14px 16px;
        font-size: 1rem;
    }
}

@media (max-width: 600px) {
    .table-container {
        box-shadow: none;
        border-radius: 8px;
        margin: 0 0.5rem;
    }

    table {
        min-width: 550px;
    }

    th, td {
        padding: 12px 10px;
        font-size: 0.9rem;
        white-space: nowrap;
    }

    th {
        font-size: 0.95rem;
    }

    tr:hover td {
        transform: none;
        box-shadow: none;
    }
}

@media (max-width: 400px) {
    table {
        min-width: 480px;
    }

    th, td {
        font-size: 0.85rem;
        padding: 10px 8px;
    }
}

        .custom-ol {
            list-style-type: none;
            counter-reset: custom-counter;
            padding: 0;
            margin: 0;
        }

        .custom-ol li {
            counter-increment: custom-counter;
            padding: 15px 15px 15px 60px;
            margin-bottom: 15px;
            background-color: #f8f9fa;
            border-left: 4px solid #3498db;
            border-radius: 0 8px 8px 0;
            position: relative;
            transition: all 0.3s ease;
            font-size: 16px;
            line-height: 1.6;
        }

        .custom-ol li:hover {
            background-color: #e8f4fc;
            transform: translateX(5px);
        }

        .custom-ol li::before {
            content: counter(custom-counter);
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            width: 32px;
            height: 32px;
            background: #3498db;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 14px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .custom-ol li:nth-child(3n+1) {
            border-left-color: #3498db;
        }

        .custom-ol li:nth-child(3n+1)::before {
            background: #3498db;
        }

        .custom-ol li:nth-child(3n+2) {
            border-left-color: #2ecc71;
        }

        .custom-ol li:nth-child(3n+2)::before {
            background: #2ecc71;
        }

        .custom-ol li:nth-child(3n+3) {
            border-left-color: #e74c3c;
        }

        .custom-ol li:nth-child(3n+3)::before {
            background: #e74c3c;
        }

        @media (max-width: 768px) {
            .container {
                width: 90%;
                padding: 20px;
            }

            .custom-ol li {
                padding: 12px 12px 12px 50px;
            }

            .custom-ol li::before {
                left: 10px;
                width: 28px;
                height: 28px;
            }
        }

        @media (max-width: 480px) {
            .container {
                width: 95%;
                padding: 15px;
            }

            .custom-ol li {
                padding: 10px 10px 10px 45px;
                font-size: 14px;
            }

            .custom-ol li::before {
                left: 8px;
                width: 24px;
                height: 24px;
                font-size: 12px;
            }
        }

.steps-list{
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: step;
    text-align: left;
  }

  .steps-list > li{
    position: relative;
    counter-increment: step;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: var(--shadow);
    font-size: 18px;
    line-height: 1.75;
    color: var(--text);
    padding: 22px 24px 22px 72px;
    margin: 18px 0;
  }

  .steps-list > li::before{
    content: counter(step);
    position: absolute;
    left: 16px;
    top: 22px;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: #f3f4f6;
    color: var(--accent);
    font-weight: 700;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 1px 4px rgba(0,0,0,.06);
  }

  .steps-list a{ color: var(--accent); text-decoration: none; }
  .steps-list a:hover{ text-decoration: underline; }

  @media (max-width: 1024px){
    .steps-list > li{ font-size: 17px; padding: 20px 22px 20px 68px; }
    .steps-list > li::before{ left: 14px; width: 38px; height: 38px; font-size: 16px; top: 20px; }
  }
  @media (max-width: 768px){
    .steps-list > li{ font-size: 16.5px; padding: 18px 20px 18px 64px; margin: 16px 0; }
    .steps-list > li::before{ left: 12px; width: 36px; height: 36px; font-size: 15px; top: 18px; }
  }
  @media (max-width: 420px){
    .steps-list > li{ font-size: 16px; padding: 16px 18px 16px 60px; margin: 14px 0; line-height: 1.7; }
    .steps-list > li::before{ left: 10px; width: 34px; height: 34px; font-size: 14px; top: 16px; }
  }

.progress-ol {
  counter-reset: step;
  list-style: none;
  margin: 0;
  padding: 0 0 0 56px;
  position: relative;
  color: #111827;
}

.progress-ol::before {
  content: "";
  position: absolute;
  top: 0;
  left: 30px;
  width: 2px;
  height: 100%;
  background: #e5e7eb;
}

.progress-ol > li {
  position: relative;
  margin: 0 0 16px 0;
  padding-top: 2px;
}

.progress-ol > li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: -56px;
  top: 2px;
  width: 28px;
  height: 28px;
  line-height: 28px;
  text-align: center;
  font-weight: 700;
  color: #fff;
  background: #2563eb;
  border-radius: 50%;
  box-shadow: 0 1px 0 rgba(0, 0, 0, .06);
}

.progress-ol > li:last-child::after {
  content: "";
  position: absolute;
  left: 30px;
  top: 34px;
  width: 2px;
  bottom: 0;
  background: #fff;
}

.progress-ol h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
  font-weight: 700;
}
.progress-ol p {
  margin: 0;
  color: #4b5563;
  font-size: .95rem;
  line-height: 1.7;
}

@media (max-width: 480px) {
  .progress-ol {
    padding-left: 46px;
  }
  .progress-ol > li::before {
    left: -46px;
    width: 24px;
    height: 24px;
    line-height: 24px;
    font-size: 0.9rem;
  }
  .progress-ol::before {
    left: 24px;
  }
}

.custom-ol-fourth {
  margin: 30px 0;
  display: grid;
  gap: 20px;
}

.custom-ol-fourth li {
  position: relative;
  background: #fffef5;
  border-left: 5px solid #f7c948;
  border-radius: 10px;
  padding: 18px 22px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.05);
  counter-increment: step;
}

.custom-ol-fourth li::before {
  content: counter(step);
  position: absolute;
  left: -38px;
  top: 20px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #f7c948;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.custom-ol-fourth h3 {
  margin: 0 0 8px;
  font-size: 18px;
  color: #7a5200;
  font-weight: 700;
  line-height: 1.4;
}

.custom-ol-fourth p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.75;
  color: #4a3c00;
}

@media (max-width: 520px) {
  .custom-ol-fourth li {
    padding: 16px 18px;
  }
  .custom-ol-fourth h3 {
    font-size: 16.5px;
  }
  .custom-ol-fourth p {
    font-size: 14.5px;
  }
}

.eps-steps {
counter-reset: step-counter;
list-style: none;
padding-left: 0;
margin-top: 20px;
}

.eps-steps li {
counter-increment: step-counter;
position: relative;
background: #fff;
border-radius: 10px;
padding: 16px 18px 16px 50px;
margin-bottom: 18px;
box-shadow: 0 4px 12px rgba(0,0,0,0.06);
font-size: 1rem;
line-height: 1.6;
color: #333;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.eps-steps li::before {
content: counter(step-counter);
position: absolute;
left: 18px;
top: 16px;
width: 26px;
height: 26px;
background: linear-gradient(135deg, #0072ff, #00c6ff);
color: #fff;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: 600;
font-size: 0.9rem;
}

@media (max-width: 768px) {
.General-Content h2 {
font-size: 1.6rem;
text-align: center;
}

.General-Content p {
font-size: 0.95rem;
line-height: 1.6;
}

.eps-steps li {
font-size: 0.95rem;
padding: 14px 14px 14px 46px;
}

.eps-steps li::before {
width: 22px;
height: 22px;
font-size: 0.8rem;
left: 14px;
top: 14px;
}
}

@media (max-width: 480px) {
.General-Content {
padding: 0 10px;
}

.eps-steps li {
font-size: 0.9rem;
line-height: 1.5;
}
}

.creative-container {
  display: flex;
  gap: 2vw;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 20px 10px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  justify-content: flex-start;
  flex-wrap: nowrap;
}

.creative-card {
  position: relative;
  flex: 0 0 260px;
  height: 420px;
  background: linear-gradient(180deg, #ffffff 0%, #f5f7ff 100%);
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  border: 1px solid #e5e8ff;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #b3b3ff transparent;
}

.creative-card::-webkit-scrollbar {
  width: 6px;
}
.creative-card::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, #8b7bff, #6a5af9);
  border-radius: 3px;
}

.creative-card::before,
.creative-card::after {
  content: "";
  position: sticky;
  left: 0;
  right: 0;
  height: 20px;
  z-index: 2;
  pointer-events: none;
}

.creative-card::before {
  top: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.08), transparent);
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

.creative-card::after {
  bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.08), transparent);
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}

.creative-card img {
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: contain;
  object-position: center;
  background-color: #f6f7fb;
  border-radius: 12px;
  margin-bottom: 12px;
  display: block;
  margin-top: 12px;
}

.creative-card h3 {
  font-size: 1.1em;
  margin-bottom: 10px;
  background: linear-gradient(to right, #6a5af9, #8b7bff);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

@supports not (-webkit-background-clip: text) {
  .creative-card h3 {
    background: none;
    color: #6a5af9;
  }
}

.creative-card::after {
  width: 60%;
  height: 3px;
  margin: 10px auto 0;
  border-radius: 3px;
  background: linear-gradient(to right, #8b7bff, #6a5af9);
  opacity: 0.3;
}

@media (max-width: 768px) {
  .creative-container {
    flex-wrap: wrap;
    overflow-x: hidden;
    justify-content: center;
  }

  .creative-card {
    flex: 1 1 90%;
    max-width: 320px;
  }
}

.enhanced-warning {
  background-color: #fff7da !important;
  border-radius: 14px;
  padding: 16px 18px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  margin: 20px 0;
  width: 100%;
  box-sizing: border-box;
}

.verify-process {
box-shadow: 0 6px 18px rgba(0,0,0,0.06);
margin: 20px 0;
color: #0b63c5;
}

.dw-alert {
display: grid;
grid-template-columns: auto 1fr;
align-items: start;
gap: 12px;
font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "PingFang SC", "Microsoft YaHei", sans-serif;
}

.dw-alert__icon {
line-height: 0;
margin-top: 2px;
color: #b8860b;
}

.verify-process .dw-alert__icon { color: #0b63c5; }

.dw-alert__body {
display: grid;
gap: 6px;
}

.dw-alert__title {
margin: 0;
font-size: 16px;
font-weight: 700;
line-height: 1.3;
}

.dw-alert__text {
margin: 0;
font-size: 14px;
line-height: 1.6;
}

@media (max-width: 520px) {
.dw-alert {
grid-template-columns: 20px 1fr;
}
.dw-alert__title {
font-size: 15px;
}
.dw-alert__text {
font-size: 13.5px;
}
}

#responsible-gambling {
  background: #fefefe;
  border-left: 5px solid #00b4d8;
  padding: 28px 24px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  margin-top: 40px;
}
#responsible-gambling h2 {
  font-size: 1.9rem;
  color: #023e8a;
  margin-bottom: 16px;
}
#responsible-gambling p {
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 14px;
}
#responsible-gambling a {
  color: #0072ff;
  text-decoration: underline;
}
#responsible-gambling a:hover {
  text-decoration: none;
}
@media (max-width: 768px) {
  #responsible-gambling {
    padding: 20px 16px;
  }
  #responsible-gambling h2 {
    font-size: 1.6rem;
    text-align: center;
  }
  #responsible-gambling p {
    font-size: 0.95rem;
  }
}
