/* Global Additional Service Page Font Size */
body.additional-service-page {
    font-size: 14px !important;
    background-color: #0f172a;
    color: #e2e8f0;
}

/* Reusing generic service styles */
.service-header {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    padding: 60px 0;
    margin-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.service-header h1 {
    color: #fff;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.service-content h2 {
    color: #f8fafc;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    margin-top: 2rem;
}

.service-content h3 {
    color: #f1f5f9;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

/* Service Content Text sizing adjustments */
.service-content p,
.service-content ul li {
    font-size: 14px !important;
    color: #cbd5e1;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.advantages-list {
    list-style: none;
    padding-left: 0;
    margin-top: 1.5rem;
}

.advantages-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
}

.advantages-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: #0ea5e9;
}

.sidebar-widget {
    margin-bottom: 30px;
}

.sidebar-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    margin-bottom: 10px;
}

.category-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    background-color: #e3f2fd;
    color: red;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px !important;
    font-style: italic;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.category-list a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-color);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.category-list a:hover,
.category-list a.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    padding-left: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.category-list a:hover::before,
.category-list a.active::before {
    transform: scaleY(1);
}

.category-list a i {
    font-size: 0.8rem;
}

.methodology-img {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}