.page-hero {
    position: relative;
    padding: 110px 0 90px;
    background: linear-gradient(135deg, #ff3b30 0%, #ff6b6b 100%);
    color: #fff;
    overflow: hidden;
    text-align: center;
}

.page-hero__shape {
    position: absolute;
    inset: auto -30px -120px -30px;
    height: 260px;
    background: rgba(255, 255, 255, 0.08);
    filter: blur(0);
    transform: skewY(-4deg);
}

.page-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    margin-bottom: 20px;
}

.page-hero__title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-hero__subtitle {
    font-size: 16px;
    line-height: 1.9;
    max-width: 680px;
    margin: 0 auto;
    opacity: .92;
}

.page-content {
    background: #f5f7fb;
    padding: 70px 0 90px;
}

.page-card {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(255, 59, 48, 0.16);
    padding: 55px;
    position: relative;
    overflow: hidden;
}

.page-card::after {
    content: "";
    position: absolute;
    top: -180px;
    right: -140px;
    width: 340px;
    height: 340px;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.28), rgba(255, 107, 107, 0));
    z-index: 1;
}

.page-card__header,
.page-card__body {
    position: relative;
    z-index: 2;
}

.page-card__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 999px;
    color: #ff3b30;
    background: rgba(255, 59, 48, 0.12);
    margin-bottom: 18px;
}

.page-card__title {
    font-size: 26px;
    font-weight: 700;
    color: #1e2334;
    margin-bottom: 14px;
}

.page-card__description {
    color: #626b7f;
    line-height: 1.9;
    margin-bottom: 32px;
    max-width: 760px;
}

.laws-content {
    direction: rtl;
    text-align: right;
    line-height: 2;
    color: #2d3446;
    padding: 30px 25px;
    border: 1px dashed #cfd5e4;
    border-radius: 20px;
    background: rgba(245, 247, 251, 0.7);
}

.laws-content h1,
.laws-content h2,
.laws-content h3,
.laws-content h4 {
    color: #ff3b30;
    margin-top: 32px;
    margin-bottom: 18px;
    font-weight: 700;
}

.laws-content p {
    margin-bottom: 16px;
    text-align: justify;
}

.laws-content ul,
.laws-content ol {
    margin: 0 0 18px 0;
    padding-right: 28px;
}

.laws-content li {
    margin-bottom: 10px;
}

.laws-empty {
    text-align: center;
    padding: 30px 20px;
    color: #8b93a7;
    border: 1px dashed #cfd5e4;
    border-radius: 20px;
    background: rgba(245, 247, 251, 0.7);
}

.laws-empty i {
    font-size: 42px;
    color: #ff3b30;
    display: block;
    margin-bottom: 18px;
}

.page-card__footer {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 107, 107, 0.18);
    display: flex;
    flex-direction: column;
    gap: 12px;
    color: #7b8599;
    font-size: 14px;
}

.page-card__footer strong {
    color: #ff3b30;
    font-weight: 700;
}

@media (max-width: 991px) {
    .page-card {
        padding: 32px 24px;
    }
    .page-hero {
        padding: 90px 0 70px;
    }
    .page-card__title {
        font-size: 22px;
    }
    .page-card::after {
        display: none;
    }
    .laws-content {
        padding: 20px 15px;
    }
    .laws-empty {
        padding: 25px 15px;
    }
}

