.reg-acts-wrapper {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 6px 32px rgba(58, 146, 148, 0.12);
    padding: 32px 28px;
    border: 1px solid rgba(58, 146, 148, 0.15);
}

.reg-acts-block {
    margin-bottom: 36px;
}

.reg-acts-block:last-child {
    margin-bottom: 0;
}

.reg-acts-subtitle {
    font-size: 20px;
    font-weight: 700;
    color: #3a9294;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(58, 146, 148, 0.2);
}

.reg-acts-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.reg-acts-item {
    display: flex;
    align-items: flex-start;
    padding: 12px 16px;
    border-radius: 8px;
    border-left: 3px solid transparent;
    transition: background-color 0.3s ease,
        border-color 0.3s ease,
        padding-left 0.3s ease;
    margin-bottom: 2px;
}

.reg-acts-item:hover {
    background-color: rgba(58, 146, 148, 0.06);
    border-left-color: #3a9294;
    padding-left: 22px;
}

.reg-acts-icon {
    flex-shrink: 0;
    margin-right: 14px;
    margin-top: 2px;
    display: flex;
    align-items: center;
}

.reg-acts-item a {
    color: #333;
    text-decoration: none;
    font-size: 15px;
    line-height: 1.55;
    transition: color 0.25s ease;
}

.reg-acts-item:hover a {
    color: #3a9294;
}

/* PDF FILES */

.reg-acts-item--pdf:hover {
    background-color: rgba(192, 57, 43, 0.06);
    border-left-color: #c0392b;
}

.reg-acts-item--pdf a {
    color: #555;
}

.reg-acts-item--pdf:hover a {
    color: #c0392b;
}

.reg-acts-badge {
    display: inline-block;
    background: #c0392b;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 4px;
    margin-left: 8px;
    vertical-align: middle;
    letter-spacing: 0.5px;
}

.page-hero {
    background: linear-gradient(135deg, #f0fafa 0%, #fff 50%, #f0fafa 100%);
    padding: 80px 0 60px;
    margin-top: 96px;
}

.page-hero h1 {
    font-size: 36px;
    font-weight: 800;
    color: #3a9294;
    line-height: 1.3;
    margin-bottom: 24px;
}

.page-hero-subtitle {
    font-size: 18px;
    color: #444;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .reg-acts-wrapper {
        padding: 20px 16px;
    }

    .reg-acts-item {
        padding: 10px 12px;
    }

    .reg-acts-item a {
        font-size: 14px;
    }
}