* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.services-offered{
    font-family: 'Roboto';
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}
a.btn-primary {
    display: inline-block;
    background-color: #3f4347;
    color: white;
    border-radius: 0.75rem 1.5rem;
    text-decoration: none;
    font-weight: bold;
    padding: 12px;
    transition: background 0.3s ease;
}

.btn-primary:hover {
  background-color: #6bab8d;
}

.offer-parts {
    margin: 0 auto;
    padding: 2rem;
}

.what-we-offer{
    background:linear-gradient(135deg, #05915b 0%, #017e31 100%);
    color: white;
    padding: 3rem 1rem;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.services {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    scroll-margin-top: 2rem;
}

.services h2{
    color: #041527;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #2c2015;
}

.services ul, .services ol {
  margin: 1rem 0 1rem 2rem;
}

.services li {
    margin-bottom: 0.5rem;
}

.btn-goback {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.services-btn {
    background-color: #3f4347;
    color: white;
    text-decoration: none;
    font-size: 21px;
    width: 163px;
    height: 42px;
    border-radius: 13px;
    margin-bottom: 30px;
    margin-top: -23px;
}

.services-btn a{
    color: white;
    text-decoration: none;
}
@media(max-width: 701px){
    .services-offered {
        font-size: 13px;
    }

    .what-we-offer {
        font-size: 25px;
    }

    .services h2 {
        font-size: 16px;
    }

    .what-we-offer {
        font-size: 25px;
    }

    .services {
        padding: 11px;
    }

    .services-btn {
        font-size: 16px;
        width: 112px;
        height: 30px;
    }
}