.background_header_services {
    position: relative;
    padding: 250px 0;
    min-height: 300px;
    background-size: cover;
    background-position: center;
}

.background_header_services h1,
.background_header_services h2 {
    margin: 50px;
    color: #ffffff;
    text-align: center;
    position: relative;
    z-index: 2;
}

.background_header_services h1 {
    font-size: 48px;
    font-weight: bold;
}

.second_section_services {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 90px 24px 70px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.second_section_services > h2 {
    margin: 0 auto 30px;
    max-width: 780px;
    color: #1A2A44;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
}

.second_section_services > p {
    max-width: 980px;
    margin: 0 auto;
    padding: 38px 42px;
    font-size: 18px;
    text-align: center;
}

.second_section_services h2,
.second_section_services  p,
.second_section_services  .gutenberg-content {
    grid-column: 1 / -1;
}

.services_list {
    background-color: #F6F0DF;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(26, 42, 68, 0.1);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services_list:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(26, 42, 68, 0.18);
}

.services_list img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.services_list h3 {
    margin: 0;
    padding: 18px 24px 8px;
    font-size: 22px;
    font-weight: 700;
    color: #1A2A44;
}

.services_list p {
    padding: 0 24px 24px;
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #2A2A2A;
}

@media (max-width: 992px) {
    .second_section_services {
        padding: 70px 20px 55px;
    }

    .second_section_services > p {
        padding: 30px 28px;
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    .background_header_services {
        padding: 120px 16px 90px;
        min-height: 220px;
    }

    .background_header_services h1,
    .background_header_services h2 {
        margin: 16px 0;
    }

    .background_header_services h1 {
        font-size: clamp(30px, 8vw, 38px);
    }

    .background_header_services h2 {
        font-size: clamp(16px, 4.3vw, 20px);
    }

    .second_section_services h2 {
        margin-bottom: 22px;
    }

    .second_section_services {
        padding: 50px 16px 45px;
    }

    .second_section_services > p {
        padding: 24px 20px;
        font-size: 16px;
        line-height: 1.7;
    }

    .second_section_services .gutenberg-content {
        margin-top: 40px;
    }

    .second_section_services {
        grid-template-columns: 1fr;
    }
}