section {
    padding: 60px 0;
    min-height: 100vh;
}

.bg-gray {
    background-color: #f9f9f9;
}

.site-heading h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.site-heading h2 span {
    color: #1b6baa;
}

.site-heading h4 {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.we-offer-area .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.we-offer-area .item {
    background: #ffffff;
    border-left: 3px solid #1b6baa;
    box-shadow: 0 0 10px #cccccc;
    padding: 30px;
    flex: 1 1 calc(33.333% - 20px);
    margin: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    transition: all 0.35s ease-in-out;
}

.we-offer-area .item i {
    color: #1b6baa;
    font-size: 70px;
    margin-bottom: 20px;
}

.we-offer-area .item h4 {
    font-size: 24px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 20px;
}

.we-offer-area .item p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #555;
}

.we-offer-area .item .btn {
    font-size: 16px;
    color: #ffffff;
    background-color: #3da3d5;
    padding: 10px 20px;
    border: none;
    text-transform: uppercase;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.we-offer-area .item .btn:hover {
    background-color: #145a88;
}

.we-offer-area .item:hover {
    background: #1b6baa;
    color: #ffffff;
}

.we-offer-area .item:hover i,
.we-offer-area .item:hover h4,
.we-offer-area .item:hover p {
    color: #ffffff !important;
}

@media (max-width: 768px) {
    .we-offer-area .item {
        flex: 1 1 calc(50% - 20px);
    }
}

@media (max-width: 576px) {
    .we-offer-area .item {
        flex: 1 1 100%;
    }
}