/* Data Service page specific styles */

body {
    background: #E5E5E5;
}

.data-service-hero {
    position: relative;
    overflow: hidden;
    height: 450px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.data-service-hero-image-wrapper {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.data-service-hero-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.data-service-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(0,0,0,0.10), rgba(0,0,0,0.35));
}

.data-service-hero .container {
    position: relative;
    z-index: 2;
    height: 450px;
    display: flex;
    align-items: flex-end;
}

.data-service-hero-content {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    padding-bottom: 30px;
    text-align: right;
}

.data-service-hero-title {
    margin: 0;
    font-size: 34px;
    font-weight: 700;
    color: #4caf50;
    text-align: right;
    white-space: nowrap;
    padding-left: 950px;
}

.data-service-section {
    background: #E5E5E5;
    padding: 40px 0 60px;
}

.data-service-card {
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
    padding: 26px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.data-service-lead {
    font-size: 15px;
    line-height: 1.8;
    color: #1b2b33;
    background: #f6fbff;
    border-left: 5px solid #2196f3;
    padding: 16px 16px;
    border-radius: 12px;
    margin-bottom: 18px;
}

.data-service-h {
    margin: 18px 0 10px;
    font-size: 20px;
    font-weight: 800;
    color: #0b2a34;
}

.data-service-list {
    margin: 0 0 8px 0;
    padding-left: 20px;
    color: #1b2b33;
    line-height: 1.8;
}

.data-service-list li {
    margin: 8px 0;
}

.data-service-list strong {
    color: #0b2a34;
}

@media (max-width: 700px) {
    .data-service-hero-title {
        white-space: normal;
        font-size: 28px;
    }
    .data-service-card {
        padding: 18px;
        border-radius: 14px;
    }
    .data-service-h {
        font-size: 18px;
    }
}

