.radial-slider-container {
    --rs-color-primary: var(--global-palette1);
    --rs-color-primary-light: #f5e6b8;
    --rs-color-bg-start: #ffffff;
    --rs-color-bg-end: #f5f2eb;
    --rs-color-text: #555555;
    --rs-max-width: 1200px;
    --rs-semi-circle: 100% 100% 0 0 / 200% 200% 0 0;
    --rs-transition: all 0.3s ease;

    width: 90%;
    max-width: var(--rs-max-width);
    margin: 0 auto;
    position: relative;
    border-bottom: 1px solid var(--rs-color-primary);
}

/* Outer Arc */
.rs-half-circle {
    position: relative;
    width: 100%;
    padding-bottom: 50%;
    border: 2px solid var(--rs-color-primary);
    border-bottom: none;
    border-radius: var(--rs-semi-circle);
    overflow: visible;
}

/* Inner Background */
.rs-content-wrapper {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    max-width: 950px;
    padding-bottom: 42.5%;
    background: linear-gradient(180deg, var(--rs-color-bg-start) 0%, var(--rs-color-bg-end) 100%);
    border-radius: var(--rs-semi-circle);
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.06), 0 5px 20px rgba(0, 0, 0, 0.04);
    z-index: 5;
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeLeft {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Content */
.rs-content-inner {
    position: absolute;
    top: 12%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    text-align: center;
    padding: 2em 3em;
}

.rs-content-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.rs-header-icon {
    width: 70px;
    height: 70px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    background: var(--global-palette1);
}

.rs-header-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--global-palette3);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 0 !important;
    max-width: 370px;
}

.rs-header-title.rs-animate {
    animation: fadeUp 0.6s ease-out forwards;
}

/* Icon Images & SVGs */
.rs-header-icon img.rs-icon-img,
.rs-arc-item img.rs-icon-img {
    width: 50%;
    height: 50%;
    object-fit: contain;
    border-radius: 4px;
}

.rs-header-icon svg,
.rs-arc-item svg {
    width: 60%;
    height: 60%;
}

.rs-content-body {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    padding: 1em 2em;
}

.rs-content-text {
    flex: 2;
    padding-top: 10px;
    text-align: left;
    max-height: 220px;
    overflow: auto;
}

.rs-content-text.rs-animate {
    animation: fadeUp 0.6s ease-out 0.15s forwards;
    opacity: 0;
}

.rs-content-text:not(.rs-animate) {
    opacity: 1;
}

.rs-content-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--rs-color-text);
    font-style: italic;
    margin: 0 0 0.8em 0;
}

.rs-content-text p:last-child {
    margin-bottom: 0;
}

.rs-content-text strong,
.rs-content-text b {
    font-weight: 600;
    color: var(--rs-color-primary);
}

.rs-content-text em,
.rs-content-text i {
    font-style: italic;
}

.rs-content-text a {
    color: var(--rs-color-primary);
    text-decoration: underline;
    transition: color 0.2s ease;
}

.rs-content-text a:hover {
    color: #b8962d;
}

.rs-content-text ul,
.rs-content-text ol {
    margin: 0.5em 0;
    padding-left: 1.5em;
    font-size: 16px;
    line-height: 1.8;
    color: var(--rs-color-text);
}

.rs-content-text li {
    margin-bottom: 0.3em;
}

.rs-content-text h3,
.rs-content-text h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--rs-color-primary);
    margin: 0 0 0.5em 0;
}

.rs-content-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    margin: 0;
}

.rs-content-image.rs-animate {
    animation: fadeLeft 0.6s ease-out 0.1s forwards;
    opacity: 0;
}

.rs-content-image:not(.rs-animate) {
    opacity: 1;
}

.rs-content-image img {
    width: auto;
    max-width: 350px;
    max-height: 200px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Arc Items */
.rs-arc-item {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 24px;
    background: linear-gradient(145deg, var(--global-palette10), #e8d48b);
    color: #8b7355;
    box-shadow: 0 4px 15px rgba(201, 162, 39, 0.25);
    transform: translate(-50%, -50%);
    transition: var(--rs-transition);
    z-index: 10;
}

.rs-arc-item:hover {
    transform: translate(-50%, -50%) scale(1.12);
    box-shadow: 0 6px 25px rgba(201, 162, 39, 0.4);
}

.rs-arc-item.active {
    background: linear-gradient(145deg, var(--rs-color-primary), #b8962d);
    transform: translate(-50%, -50%) scale(1.18);
    box-shadow: 0 8px 30px rgba(201, 162, 39, 0.45);
}

/* Tablet */
@media (max-width: 992px) {
    .rs-content-wrapper {
        width: 87%;
        padding-bottom: 43.5%;
    }

    .rs-content-inner {
        top: 8%;
        width: 92%;
        padding: 1.5em;
    }

    .rs-content-header {
        margin-bottom: 20px;
    }

    .rs-header-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .rs-header-title {
        font-size: 16px;
        letter-spacing: 2px;
    }

    .rs-content-body {
        gap: 25px;
    }

    .rs-content-text p {
        font-size: 14px;
        line-height: 1.6;
    }

    .rs-content-text ul,
    .rs-content-text ol {
        font-size: 14px;
        line-height: 1.6;
    }

    .rs-content-text h3,
    .rs-content-text h4 {
        font-size: 16px;
    }

    .rs-content-image img {
        max-width: 250px;
    }

    .rs-arc-item {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .rs-content-wrapper {
        width: 90%;
        padding-bottom: 45%;
    }

    .rs-content-inner {
        top: 8%;
        width: 94%;
        padding: 1em;
    }

    .rs-content-header {
        flex-direction: column;
        gap: 6px;
        margin-bottom: 10px;
    }

    .rs-header-icon {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .rs-header-title {
        font-size: 11px;
        letter-spacing: 1px;
    }

    .rs-content-body {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .rs-content-text {
        padding-top: 0;
        text-align: center;
        order: 2;
    }

    .rs-content-text p {
        font-size: 11px;
        line-height: 1.4;
    }

    .rs-content-text ul,
    .rs-content-text ol {
        font-size: 11px;
        line-height: 1.4;
        padding-left: 1.2em;
    }

    .rs-content-text h3,
    .rs-content-text h4 {
        font-size: 13px;
    }

    .rs-content-image {
        justify-content: center;
        order: 1;
    }

    .rs-content-image img {
        max-width: 120px;
    }

    .rs-arc-item {
        width: 36px;
        height: 36px;
        font-size: 12px;
        border-width: 2px;
    }

    .rs-content-text {
        display: none;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .rs-content-wrapper {
        width: 92%;
        padding-bottom: 46%;
    }

    .rs-content-inner {
        top: 6%;
        width: 96%;
        padding: 0.8em;
    }

    .rs-content-header {
        margin-bottom: 8px;
        gap: 4px;
    }

    .rs-header-icon {
        width: 30px;
        height: 30px;
        font-size: 12px;
        border-radius: 8px;
    }

    .rs-header-title {
        font-size: 9px;
        letter-spacing: 0.5px;
    }

    .rs-content-body {
        gap: 8px;
    }

    .rs-content-text p {
        font-size: 9px;
        line-height: 1.3;
    }

    .rs-content-text ul,
    .rs-content-text ol {
        font-size: 9px;
        line-height: 1.3;
        padding-left: 1em;
    }

    .rs-content-text h3,
    .rs-content-text h4 {
        font-size: 11px;
    }

    .rs-content-image img {
        max-width: 90px;
    }

    .rs-arc-item {
        width: 30px;
        height: 30px;
        font-size: 10px;
    }
}