.sector-hero {
    padding: 2rem;
    min-height: 300px;
    height: 600px;
    height: 75vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

}

.sector-hero .container {
    display: grid;
    align-items: end;
    align-content: end;
    height: 100%;
}

.sector-hero h1, .sector-hero p {
    color: #fff;
}

.sector-hero p {
    font-size: 1.5rem;
}

.sector-hero h1 {
}

.sector-overview {
    margin: 2rem auto;
    grid-gap: 2rem;
    align-items: stretch;
}

.sector-challenges .container {
    padding: 2rem;
    background: #104075;
    border-radius: 20px 20px 80px 20px;
    color: #fff;
    height: 100%;
}

.sector-challenges h2, .sector-challenges p, .sector-challenges h3 {
    color: #fff;
}

.sector-benefits .container {
    background: linear-gradient(59deg, #eaf1f6 0, #f6f1f7 100%);
    padding: 2rem;
    border-radius: 20px 20px 80px 20px;
    height: 100%;
}

.sector-products .grid {
    grid-gap: 2rem;
    margin-bottom: 2rem;
}

.product-card {
    background: linear-gradient(59deg, #eaf1f6 0, #f6f1f7 100%);
    border-radius: 20px 20px 80px 20px;
    padding: 2rem;
    height: 100%;
}

.product-card__image img {
    text-align: center;
    margin: 0 auto 1rem;
}

.sector-trust .home-reviews-block {
    margin: 0;
}

.sector-faqs {
    background: linear-gradient(59deg, #eaf1f6 0, #f6f1f7 100%);
    padding: 2rem;
    border-radius: 20px 20px 80px 20px;
    margin: 1rem;
}

.sector-faqs .container {
    grid-gap: 2rem 0;
}

.faq-item {
    border: 1px solid #7195ca;
    border-radius: 20px 20px 80px 20px;
    padding: 2rem;
}

.faq-item h4 {
    margin-bottom: 1rem;
    border-bottom: 1px solid #7195ca;
    padding-bottom: 1rem;
}

.sector-cta {
    margin: 2rem auto;
}

.sector-cta .cta-text {
    background: #104075;
    padding: 2rem;
    border-radius: 20px 20px 80px 20px;
    color: #fff;
}

.sector-cta .container {
    display: grid;
    grid-gap: 2rem;
    align-items: center;
    align-content: center;
    justify-content: space-between;
}

.sector-cta h2, .sector-cta p {
    color: #fff;
}

.cta-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px 20px 80px 20px;
}

/* Media Queries */
@media only screen and (min-width:768px) {

    .sector-hero {
        padding: 4rem;
        height: 500px;
        height: 65vh;
    }

    .sector-hero p {
        font-size: 1.5rem;
        max-width: 50%;
    }

    .sector-hero h1 {
        max-width: 50%;
    }

    .sector-challenges .container {
        padding: 4rem;
    }

    .sector-benefits .container {
        padding: 4rem;
    }

    .sector-products .grid {
       margin-bottom: 4rem;
    }

    .sector-faqs .container {
        grid-gap: 2rem;
    }

    .sector-faqs {
        padding: 4rem;
        margin: auto;
    }

    .sector-cta {
        margin: 4rem auto;
    }

    .sector-cta .cta-text {
        padding: 4rem;
    }

}