.services-page-banner {
    background: #0f172a;
    color: white;
    padding: 70px 0;
}

.services-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.services-banner-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.services-banner-content img {
    width: 500px;
    max-width: 100%;
    border-radius: 12px;
}

.services-banner-text h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.services-banner-text p {
    font-size: 18px;
    line-height: 1.8;
}

.services-section {
    padding: 60px 0;
}

.services-section h2 {
    color: #0f172a;
    margin-bottom: 20px;
    font-size: 34px;
}

.services-section p {
    line-height: 1.8;
    color: #555;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.services-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
}

.services-card h3 {
    color: #1d4ed8;
    margin-bottom: 15px;
}

.services-card ul {
    padding-left: 20px;
}

.services-card li {
    margin-bottom: 10px;
}

.services-feature-row {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 30px;
}

.services-feature-row img {
    width: 450px;
    border-radius: 12px;
}

.services-feature-content {
    flex: 1;
}

.services-cta {
    background: #1d4ed8;
    color: white;
    text-align: center;
    padding: 70px 20px;
}

.services-cta h2 {
    margin-bottom: 15px;
    color: white;
}
.services-cta p {
     color: white;
}

.services-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 30px;
    background: white;
    color: #1d4ed8;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
}

@media(max-width:768px) {

    .services-banner-content,
    .services-feature-row {
        flex-direction: column;
    }

}
