/* Service Page Specific Styles */

.service-header {
    background-color: #f8fafc;
    padding: 60px 0;
    margin-bottom: 50px;
    border-bottom: 1px solid #e2e8f0;
}

.service-header h1 {
    color: #1e293b;
    font-weight: 700;
}

.service-content h2 {
    color: #334155;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    margin-top: 2rem;
}

.service-content p {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Sidebar Styles */
.sidebar-widget {
    margin-bottom: 30px;
}

.sidebar-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    /* Dark text for sidebar title */
    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 Image */
.methodology-img {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Override dark theme for this specific page content area if needed, 
   but keeping it consistent with the global dark theme is usually better.
   However, the user reference showed a white background. 
   I will create a specific light-theme wrapper for the service content if strictly following the reference,
   but for now I will adapt the reference style to the site's dark theme 
   OR override the body background for this page to be light as per the reference image.
   
   Given the "Dark Blue & Black" theme was a strong request earlier, 
   switching back to white might be jarring. 
   I will stick to the DARK theme but use the LAYOUT from the reference.
   
   WAIT, the user said "this type of styles" pointing to a white page.
   I should probably make the content area clean.
   Let's try to adapt the "clean" look to the dark theme first (light text, dark bg),
   but if I strictly follow "this type of styles", it implies light mode.
   
   I will stick to the Global Dark Theme for consistency, but style the sidebar/content 
   to match the *structure* and *typography hierarchy* of the reference.
*/

/* Adapting to Light Theme (Requested) */
/* Global Service Page Font Size */
/* Global Service Page Font Size - Dark Theme */
body.services-page {
    font-size: 14px !important;
    background-color: #0f172a;
    /* Dark Background */
    color: #e2e8f0;
    /* Light Text */
}

.service-header {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    /* Blue Gradient */
    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.75rem;
    margin-bottom: 1.5rem;
    margin-top: 2rem;
}

.service-content h3 {
    color: #f1f5f9;
}

.service-content p {
    color: #cbd5e1;
    /* Light Slate */
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-content ul li {
    color: #cbd5e1;
}

/* Sidebar Styles */
.sidebar-widget {
    margin-bottom: 30px;
}

.sidebar-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
}

/* Dark theme adaptation handled in main block */