/* Services Hero Section */
.services-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 150px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23000" opacity="0.02"/><circle cx="75" cy="75" r="1" fill="%23000" opacity="0.02"/><circle cx="50" cy="10" r="1" fill="%23000" opacity="0.02"/><circle cx="10" cy="60" r="1" fill="%23000" opacity="0.02"/><circle cx="90" cy="40" r="1" fill="%23000" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.services-title {
    font-size: 40px;
    font-weight: 700;
    color: #213D56;
    margin: 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Services List Section */
.services-list {
    padding: 80px 0;
    background-color: #ffffff;
}

/* Subtle gradient variant */
.services-list--gradient {
    background: linear-gradient(135deg, #f8faff 0%, #eef3ff 100%);
}

.services-list--gradient .services-grid {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: saturate(120%) blur(2px);
}

.services-main-title {
    font-size: 36px;
    font-weight: 600;
    color: #213D56;
    text-align: center;
    margin: 0 0 20px 0;
    line-height: 1.3;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.services-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    text-align: center;
    margin: 0 0 50px 0;
    font-weight: 400;
}

.services-intro {
    text-align: center;
    margin-bottom: 40px;
}

.services-intro p {
    font-size: 1.2rem;
    color: #495057;
    font-weight: 500;
    margin: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
    background-color: #f8f9fa;
    padding: 30px 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.services-list-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.services-list-items li {
    padding: 8px 0;
    color: #495057;
    font-size: 0.95rem;
    line-height: 1.4;
    position: relative;
    padding-left: 15px;
}

/* Link styles inside service items */
.services-list-items a {
    color: #213D56;
    text-decoration: none;
    display: inline-block;
    padding: 4px 6px;
    border-radius: 6px;
    transition: color .2s ease, background-color .2s ease, transform .15s ease;
}

.services-list-items a:hover {
    color: #3179BE;
    transform: translateX(3px);
}

.services-list-items a:focus-visible {
    outline: 2px solid #3179BE;
    outline-offset: 2px;
}

.services-list-items li:last-child {
    border-bottom: none;
}

.services-list-items li::before {
    content: "•";
    color: #3179BE;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Responsive Design for Services Section */
@media (max-width: 1199px) {  
    .services-main-title {
        font-size: 2.2rem;
    }
}
@media (max-width: 991px) {
    .services-title {
        font-size: 32px;
    }
    
    .container {
        padding: 0 15px;
    }
    .services-list {
        padding: 60px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .services-main-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    .services-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }
}
@media (max-width: 575px) {
    .services-hero {
        padding: 120px 0 40px;
    }
    
    .services-title {
        font-size: 26px;
        line-height: 1.3;
    }
    .services-list {
        padding: 40px 0;
    }
    
    .services-main-title {
        font-size: 1.5rem;
    }
    
    .services-intro p {
        font-size: 1.1rem;
    }
    
    .services-list-items li {
        font-size: 0.9rem;
        padding: 6px 0 6px 15px;
    }
}