.services-container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.services-header {
    padding: 65px 0;
    background: linear-gradient(
        135deg,
        #f4f7f5,
        #eef2f0
    );
}

.services-breadcrumb {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 14px;
}

.services-breadcrumb a {
    color: #735c00;
    text-decoration: none;
    font-weight: 600;
}

.services-header h1 {
    margin: 0 0 15px;
    color: #17263a;
    font-family: "Space Grotesk", sans-serif;
    font-size: 52px;
    font-weight: 700;
}

.services-header p {
    max-width: 750px;
    margin: 0;
    color: #66716d;
    font-family: "Manrope", sans-serif;
    font-size: 17px;
    line-height: 1.8;
}

.services-section {
    padding: 70px 0 90px;
    background: #ffffff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-card {
    position: relative;
    min-height: 310px;
    padding: 30px;
    border: 1px solid #e1e6e2;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 12px 35px rgba(45, 62, 53, 0.06);
    overflow: hidden;
    transition: all 0.35s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(45, 62, 53, 0.12);
    border-color: #d4dcd6;
}

.service-number {
    position: absolute;
    top: 18px;
    right: 20px;
    color: #e3e8e4;
    font-size: 48px;
    font-weight: 700;
}

.service-card-content {
    position: relative;
    z-index: 2;
}

.service-category {
    display: inline-block;
    margin-bottom: 18px;
    padding: 6px 12px;
    border-radius: 30px;
    background: #d1e4d8;
    color: #2d3e35;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.service-card h2 {
    margin: 0 0 15px;
    color: #17263a;
    font-family: "Space Grotesk", sans-serif;
    font-size: 24px;
    line-height: 1.3;
}

.service-card p {
    margin: 0 0 22px;
    color: #66716d;
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    line-height: 1.7;
}

.service-read-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #735c00;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
}

.service-read-more span {
    font-size: 20px;
    transition: 0.3s;
}

.service-read-more:hover span {
    transform: translateX(5px);
}

.no-services {
    padding: 60px;
    text-align: center;
    border: 1px solid #e5e9e6;
    border-radius: 15px;
}

@media (max-width: 991px) {

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 767px) {

    .services-header h1 {
        font-size: 38px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-section {
        padding: 45px 0 60px;
    }

}