/* ============================================================
   Login Page Styles
   ============================================================ */
.header_padding {
    padding: 30px 0 0 0;
}

.login-page {
    padding: 40px 0 0 0;
}

.login-page__inner {
    display: flex;
    width: 100%;
}

/* ---------- Left: Decorative Section ---------- */
.login-page__left {
    flex: 1;
    position: relative;
    min-height: 600px;
    overflow: hidden;
    border-radius: 30px;
}

.login-page__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/h_bg.jpg') center;
    background-size: cover;
}

.login-page__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, #fdff56, #fc8a1b);
    opacity: 0.85;
}

.login-page__content {
    position: relative;
    z-index: 2;
    padding: 80px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 600px;
}

.login-page__content h1 {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 24px 0;
}

.login-page__content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
    max-width: 400px;
}

/* ---------- Right: Login Form ---------- */
.login-page__right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 60px 0;
}

.login-form {
    background: white;
    border-radius: 30px;
    padding: 60px;
    width: 100%;
    max-width: 420px;
}

.login-form__logo {
    text-align: center;
    margin-bottom: 30px;
}

.login-form__logo img {
    width: 180px;
    height: auto;
}

.login-form__title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin: 0 0 40px 0;
    letter-spacing: 2px;
}

.login-form__label {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px !important;
}

.login-form__input {
    width: 100%;
    height: 50px;
    padding: 0 20px;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    font-size: 14px;
    color: #333;
    transition: all 0.3s ease;
    background: #fafafa;
}

.login-form__input:focus {
    outline: none;
    border-color: #fc8a1b;
    background: white;
    box-shadow: 0 0 0 3px rgba(252, 138, 27, 0.1);
}

.login-form__input::placeholder {
    color: #999;
}

.login-form__checkbox {
    font-size: 13px;
    color: #666;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.login-form__checkbox input[type="checkbox"] {
    margin: 0;
    accent-color: #fc8a1b;
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.login-form__btn {
    height: 54px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(90deg, #fde310, #be931c, #fde310);
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.login-form__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(252, 138, 27, 0.4);
    color: white;
    text-decoration: none;
}

.login-form__btn:active {
    transform: translateY(0);
}

.login-form__hr {
    border: none;
    height: 1px;
    background: #e0e0e0;
    margin: 30px 0;
}

.login-form__terms {
    font-size: 12px;
    color: #666;
    line-height: 1.6;
    margin: 16px 0;
}

.login-form__terms a {
    color: #fc8a1b;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.login-form__terms a:hover {
    color: #be931c;
    text-decoration: underline;
}

.login-form__signup {
    text-align: center;
    font-size: 14px;
    color: #666;
    margin: 0;
}

.login-form__signup a {
    color: #fc8a1b;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.login-form__signup a:hover {
    color: #be931c;
    text-decoration: underline;
}

/* ---------- Responsive ---------- */
@media (max-width: 959px) {
    .login-page__inner {
        flex-direction: column;
    }

    .login-page__left {
        min-height: 400px;
    }

    .login-page__content {
        padding: 60px 40px;
        min-height: 400px;
        text-align: center;
    }

    .login-page__content h1 {
        font-size: 36px;
    }

    .login-page__content p {
        font-size: 16px;
        max-width: 100%;
        margin: 0 auto;
    }

    .login-page__right {
        padding: 40px 30px;
    }

    .login-form {
        padding: 40px 30px;
    }

    .login-form__title {
        font-size: 26px;
        margin-bottom: 30px;
    }
}

@media (max-width: 639px) {
    .login-page__content h1 {
        font-size: 28px;
    }

    .login-page__content p {
        font-size: 14px;
    }

    .login-form {
        padding: 30px 20px;
    }

    .login-form__title {
        font-size: 22px;
    }

    .login-form__input {
        height: 44px;
        font-size: 13px;
    }

    .login-form__btn {
        height: 48px;
        font-size: 14px;
    }

    .login-form__logo img {
        width: 120px;
    }
}

/* ============================================================
   Payment Page Styles
   ============================================================ */
.pay-page {
    padding: 0;
    background: #f5f5f5;
}

.pay-page__header {
    position: relative;
    min-height: 300px;
    overflow: hidden;
}

.pay-page__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/h_bg.jpg') center;
    background-size: cover;
}

.pay-page__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(253, 255, 86, 0.85), rgba(252, 138, 27, 0.85));

}

.pay-page__header-content {
    position: relative;
    z-index: 2;
    padding: 60px 0;
    text-align: center;
}

.pay-page__breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.pay-page__breadcrumb li {
    display: flex;
    align-items: center;
    color: white;
    font-size: 14px;
    font-weight: 600;
}

.pay-page__breadcrumb li a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.pay-page__breadcrumb li a:hover {
    opacity: 0.8;
}

.pay-page__breadcrumb li:not(:last-child)::after {
    content: '/';
    margin-left: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.pay-page__title {
    font-size: 48px;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin: 0 0 15px 0;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.pay-page__subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.pay-page__body {
    margin-top: -50px;
    position: relative;
    z-index: 3;
    background: #f5f5f5;
    border-radius: 40px 40px 0 0;
    padding: 80px;
}


.pay-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06);
    margin-bottom: 30px;
    position: relative;
    transition: all 0.3s ease;
    box-sizing: border-box;
    overflow: visible;
}

.pay-card .uk-form-controls {
    box-sizing: border-box;
}

.pay-card .uk-flex {
    flex-wrap: wrap;
    gap: 10px;
}

.pay-card .uk-flex .pay-input {
    flex: 1;
    min-width: 120px;
}

.pay-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}


.pay-grid__item {
    width: 100%;
}

.pay-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.pay-card__badge {
    position: absolute;
    top: -12px;
    left: 40px;
    background: linear-gradient(90deg, #fde310, #fc8a1b);
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 8px 24px;
    border-radius: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(252, 138, 27, 0.3);
}

.pay-card__title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 35px 0;
    padding-top: 15px;
}

.pay-card__hint {
    font-size: 13px;
    color: #888;
    line-height: 1.6;
    margin: 20px 0 0 0;
    background: #f9f9f9;
    padding: 15px;
    border-radius: 10px;
}

.pay-input {
    width: 100%;
    height: 52px;
    padding: 0 22px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    font-size: 14px;
    color: #333;
    transition: all 0.3s ease;
    background: white;
    box-sizing: border-box;
}

.pay-input:focus {
    outline: none;
    border-color: #fc8a1b;
    box-shadow: 0 0 0 3px rgba(252, 138, 27, 0.1);
}

.pay-input::placeholder {
    color: #999;
}

.pay-input--large {
    font-size: 18px;
    font-weight: 700;
    height: 60px;
}

.pay-product {
    display: flex;
    flex-direction: column;
    border: 2px solid #e0e0e0;
    border-radius: 14px;
    padding: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    background: white;
    box-sizing: border-box;
    height: 100%;
    justify-content: space-between;
}

.pay-product > div:first-child {
    flex-shrink: 0;
}

.pay-product p {
    height: 50px;
    margin: 0 auto;
}

.pay-product p img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.pay-product h5 {
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pay-product .uk-text-small {
    min-height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pay-product:hover {
    border-color: #fc8a1b;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(252, 138, 27, 0.15);
}

.pay-product--selected {
    border-color: #fc8a1b;
    background: rgba(252, 138, 27, 0.04);
    box-shadow: 0 0 0 3px rgba(252, 138, 27, 0.1);
}

.pay-product__price {
    text-align: right;
    padding: 12px 18px;
    background: #1a1a1a;
    color: white;
    font-size: 14px;
    font-weight: 700;
    margin-top: auto;
    border-radius: 10px;
}

.pay-payment {
    display: block;
    border: 2px solid #e0e0e0;
    border-radius: 14px;
    padding: 20px 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.pay-payment:hover {
    border-color: #fc8a1b;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(252, 138, 27, 0.15);
}

.pay-payment--selected {
    border-color: #fc8a1b;
    background: rgba(252, 138, 27, 0.04);
    box-shadow: 0 0 0 3px rgba(252, 138, 27, 0.1);
}

.pay-card__summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 25px;
    border-top: 1px solid #f0f0f0;
    margin-top: 25px;
}

.pay-summary__left h5 {
    font-size: 14px;
    color: #666;
    margin: 0 0 8px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pay-summary__amount {
    font-size: 36px;
    font-weight: 700;
    color: #fc8a1b;
}

.pay-quantity {
    display: flex;
    align-items: center;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    background: white;
}

.pay-quantity__btn {
    width: 48px;
    height: 48px;
    border: none;
    background: #f5f5f5;
    font-size: 22px;
    font-weight: 700;
    color: #666;
    cursor: pointer;
    transition: all 0.2s ease;
}

.pay-quantity__btn:hover {
    background: #fc8a1b;
    color: white;
}

.pay-quantity__input {
    width: 70px;
    height: 48px;
    border: none;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    color: #333;
    background: white;
}

.pay-quantity__input:focus {
    outline: none;
}

.pay-page__submit {
    background: white;
    border-radius: 16px;
    padding: 35px 40px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    margin-top: 50px;
    margin-bottom: 60px;
}

.pay-submit__info {
    display: flex;
    align-items: baseline;
    gap: 15px;
}

.pay-submit__label {
    font-size: 16px;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pay-submit__amount {
    font-size: 42px;
    font-weight: 700;
    color: #fc8a1b;
}

.pay-submit__btn {
    height: 64px;
    padding: 0 80px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(90deg, #fde310, #be931c, #fde310);
    cursor: pointer;
    transition: all 0.3s ease;
}

.pay-submit__btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(252, 138, 27, 0.4);
}

.pay-submit__btn:active {
    transform: translateY(-1px);
}

@media (max-width: 959px) {
    .pay-page__overlay {
        width: 100%;
        border-radius: 0 0 60px 60px;
    }

    .pay-page__title {
        font-size: 36px;
    }
    
    .pay-card {
        padding: 25px;
    }

    .pay-card__title {
        font-size: 20px;
    }

    .pay-card__badge {
        font-size: 10px;
        padding: 6px 16px;
        left: 25px;
    }
}

@media (max-width: 639px) {
    .pay-page__title {
        font-size: 28px;
    }

    .pay-page__subtitle {
        font-size: 14px;
    }

    .pay-card__summary {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .pay-submit__info {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
        margin-bottom: 20px;
    }

    .pay-submit__amount {
        font-size: 32px;
    }

    .pay-submit__btn {
        width: 100%;
        padding: 0;
        height: 56px;
    }

    .pay-input {
        height: 48px;
        font-size: 13px;
    }

    .pay-product {
        padding: 12px;
    }

    .pay-product__price {
        padding: 8px 12px;
        font-size: 12px;
        border-radius: 8px;
    }
}

/* ============================================================
   User Page Styles
   ============================================================ */
.user-page {
    padding: 0;
    background: #f5f5f5;
}

.user-page__header {
    position: relative;
    min-height: 300px;
    overflow: hidden;
    width: 100%;
}

.user-page__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/h_bg.jpg') center;
    background-size: cover;
}

.user-page__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(253, 255, 86, 0.85), rgba(252, 138, 27, 0.85));
}

.user-page__header-content {
    position: relative;
    z-index: 2;
    padding: 60px 0;
    text-align: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.user-page__breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.user-page__breadcrumb li {
    display: flex;
    align-items: center;
    color: white;
    font-size: 14px;
    font-weight: 600;
}

.user-page__breadcrumb li a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.user-page__breadcrumb li a:hover {
    opacity: 0.8;
}

.user-page__breadcrumb li:not(:last-child)::after {
    content: '/';
    margin-left: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.user-page__title {
    font-size: 42px;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin: 0 0 15px 0;
}

.user-page__subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.user-page__body {
    position: relative;
    z-index: 3;
    background: #f5f5f5;
    padding-top: 40px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 60px;
    width: 100%;
    box-sizing: border-box;
}

.user-page__body .uk-container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.user-sidebar {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.user-sidebar__avatar {
    text-align: center;
    padding-bottom: 25px;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 20px;
}

.user-avatar__icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fde310, #fc8a1b);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px auto;
    font-size: 32px;
    color: white;
    box-shadow: 0 4px 15px rgba(252, 138, 27, 0.3);
}

.user-sidebar__name {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.user-sidebar__menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.user-menu__item {
    margin-bottom: 8px;
}

.user-menu__item a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    border-radius: 10px;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.user-menu__item a:hover {
    background: #f5f5f5;
    color: #fc8a1b;
}

.user-menu__item--active a {
    background: linear-gradient(135deg, rgba(253, 255, 86, 0.3), rgba(252, 138, 27, 0.3));
    color: #fc8a1b;
}

.user-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.user-card__title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 30px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.user-card__content {
    padding-top: 0;
}

.user-table {
    width: 100%;
    border-collapse: collapse;
}

.user-table th {
    text-align: left;
    padding: 15px 20px;
    background: #f9f9f9;
    color: #666;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid #e0e0e0;
}

.user-table td {
    padding: 18px 20px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
    color: #333;
}

.user-table tbody tr:hover {
    background: #fafafa;
}

.user-status {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.user-amount {
    font-weight: 700;
    color: #fc8a1b;
}

.user-view-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    background: linear-gradient(135deg, #fde310, #fc8a1b);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.user-view-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(252, 138, 27, 0.3);
}

.user-card__pagination {
    margin-top: 30px;
    text-align: center;
}

.user-card__pagination ul {
    display: inline-flex;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.user-card__pagination li {
    margin: 0;
}

.user-card__pagination a,
.user-card__pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    background: white;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.user-card__pagination a:hover {
    background: #f5f5f5;
    border-color: #fc8a1b;
    color: #fc8a1b;
}

.user-card__pagination li.active span {
    background: linear-gradient(135deg, #fde310, #fc8a1b);
    border-color: transparent;
    color: white;
    box-shadow: 0 4px 12px rgba(252, 138, 27, 0.3);
}

.user-card__pagination li.disabled span {
    opacity: 0.5;
    cursor: not-allowed;
}

.user-details {
    padding: 0;
}

.user-detail__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid #f0f0f0;
}

.user-detail__label {
    font-size: 14px;
    font-weight: 600;
    color: #666;
}

.user-detail__value {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
}

.user-detail__total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0 10px 0;
    margin-top: 10px;
    border-top: 2px solid #e0e0e0;
}

.user-detail__total-value {
    font-size: 28px;
    font-weight: 700;
    color: #fc8a1b;
}

@media (max-width: 959px) {
    .user-page__title {
        font-size: 32px;
    }

    .user-sidebar {
        padding: 25px;
        margin-bottom: 30px;
    }

    .user-card {
        padding: 25px;
    }

    .user-card__title {
        font-size: 18px;
    }

    .user-table th,
    .user-table td {
        padding: 12px 15px;
        font-size: 12px;
    }
}

@media (max-width: 639px) {
    .user-page__title {
        font-size: 26px;
    }

    .user-page__subtitle {
        font-size: 14px;
    }

    .user-detail__row {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .user-detail__label {
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .user-detail__total-value {
        font-size: 22px;
    }

    .user-view-link {
        padding: 6px 15px;
        font-size: 11px;
    }
}

/* ============================================================
   RPage Show Page Styles
   ============================================================ */
.rpage-page {
    padding: 40px 20px;
}

.rpage-page__header {
    margin-bottom: 30px;
}

.rpage-page__breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 20px;
    background: white;
    border-radius: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.rpage-page__breadcrumb li {
    display: flex;
    align-items: center;
    color: #666;
    font-size: 14px;
    font-weight: 600;
}

.rpage-page__breadcrumb li a {
    color: #fc8a1b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.rpage-page__breadcrumb li a:hover {
    color: #be931c;
}

.rpage-page__breadcrumb li:not(:last-child)::after {
    content: '/';
    margin-left: 12px;
    color: #ddd;
}

.rpage-content {
    background: white;
    border-radius: 16px;
    padding: 45px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06);
}

.rpage-content__title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 35px 0;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 20px;
}

.rpage-content__body {
    color: #444;
    font-size: 15px;
    line-height: 1.8;
}

.rpage-content__body h1,
.rpage-content__body h2,
.rpage-content__body h3,
.rpage-content__body h4,
.rpage-content__body h5,
.rpage-content__body h6 {
    color: #fc8a1b;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 700;
}

.rpage-content__body h1 { font-size: 22px; }
.rpage-content__body h2 { font-size: 20px; }
.rpage-content__body h3 { font-size: 18px; }
.rpage-content__body h4 { font-size: 16px; }

.rpage-content__body p {
    margin-bottom: 18px;
}

.rpage-content__body ul,
.rpage-content__body ol {
    padding-left: 25px;
    margin-bottom: 18px;
}

.rpage-content__body li {
    margin-bottom: 10px;
}

.rpage-content__body a {
    color: #fc8a1b;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.rpage-content__body a:hover {
    color: #be931c;
    text-decoration: underline;
}

.rpage-content__body img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 15px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.rpage-content__body blockquote {
    border-left: 4px solid #fc8a1b;
    padding-left: 20px;
    margin: 25px 0;
    color: #666;
    font-style: italic;
    background: #f9f9f9;
    padding: 15px 20px;
    border-radius: 0 10px 10px 0;
}

.rpage-content__body hr {
    border: none;
    border-top: 2px solid #f0f0f0;
    margin: 30px 0;
}

.rpage-content__body table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.rpage-content__body th {
    background: #f9f9f9;
    padding: 12px 15px;
    text-align: left;
    font-weight: 700;
    color: #666;
    border: 1px solid #e0e0e0;
}

.rpage-content__body td {
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
}

.rpage-content__body tbody tr:hover {
    background: #fafafa;
}

@media (max-width: 959px) {
    .rpage-content {
        padding: 30px 25px;
    }

    .rpage-content__title {
        font-size: 24px;
        letter-spacing: 1px;
        padding-bottom: 15px;
    }
}

@media (max-width: 639px) {
    .rpage-page {
        padding: 25px 15px;
    }

    .rpage-content {
        padding: 20px;
    }

    .rpage-content__title {
        font-size: 20px;
        letter-spacing: 1px;
    }

    .rpage-content__body {
        font-size: 14px;
    }

    .rpage-content__body h1 { font-size: 18px; }
    .rpage-content__body h2 { font-size: 17px; }
    .rpage-content__body h3 { font-size: 16px; }
}