
.services-page-section {
    font-family: var(--rv-body-font);
    color: var(--rv-text-color);
}

/* UL list styles */
.services-page-section ul {
    list-style-type: none;
    padding: 0 0 0 30px;
    margin: 20px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

/* LI items */
.services-page-section ul li {
    position: relative;
    margin-bottom: 10px;
    padding: 12px 15px 12px 45px;
    border-radius: 6px;
    width: 100%;
    backdrop-filter: blur(56px);
    -webkit-backdrop-filter: blur(56px);
    border-bottom: 6px solid transparent;
    border-image: linear-gradient(45deg, var(--rv-secondary) 0%, transparent 85%) 1;
    color: var(--rv-heading-color);
    background: var(--rv-primary-light);
    box-shadow: 0 4px 8px rgba(68, 18, 32, 0.1);
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

/* Arrow before list item */
.services-page-section ul li::before {
    content: "\21AA"; /* right arrow */
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: var(--rv-primary);
}

/* Hover effect for list items */
.services-page-section ul li:hover {
    border-bottom-color: var(--rv-secondary);
    background: var(--rv-secondary-light);
}

/* Custom nav (tabs) container */
.services-page-section .costom-nev {
    display: flex;
    flex-wrap: wrap;
    margin: -15px;
    padding-bottom: 30px;
    gap: 10px;
}

/* Each tab handler */
.services-page-section .costom-nev .tebHendlers {
    padding: 15px;
}

/* Active tab styling */
.services-page-section .costom-nev .tebHendlers.active span {
    background: var(--rv-primary);
    color: var(--rv-white);
    box-shadow: 0 0 8px var(--rv-primary);
}

/* Tab span */
.services-page-section .costom-nev .tebHendlers span {
    box-shadow: 0 0 5px #ddd;
    padding: 10px 20px;
    border-radius: 5px;
    border: 1px solid var(--rv-primary);
    font-weight: 600;
    cursor: pointer;
    color: var(--rv-primary);
    transition: all 0.3s ease;
}

/* Hover on tab span */
.services-page-section .costom-nev .tebHendlers span:hover {
    background: var(--rv-primary);
    color: var(--rv-white);
    box-shadow: 0 0 8px var(--rv-primary);
}

/* Nevdisc box hidden by default */
.services-page-section .nevdisc-box {
    display: none;
    color: var(--rv-heading-color);
    margin-top: 20px;
}

/* Nevdisc box shown */
.services-page-section .nevdisc-box.show {
    display: block;
}

/* Nevdisc box list items */
.services-page-section .nevdisc-box ul li {
    color: var(--rv-text-color);
}

/* Image container */
.services-page-section .image {
    float: right;
    padding: 30px 30px 0 30px;
    max-width: 45%;
}

.services-page-section .image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(68, 18, 32, 0.2);
    object-fit: cover;
}
