.grid {
    display: grid;
    gap: 32px;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
}
.office-section h2 {
    margin-bottom: 28px;
    max-width: 436px;
}
.office-section h2 span {
    color: #00A3E0;
}
.office-section p.subtitle {
    font-size: 1rem;
    line-height: 24px;
    margin: 0 0 35px;
    color: #64748b;
    max-width: 570px;
}
.features {
    margin-bottom: 42px;
}
.features li {
    display: flex;
    align-items: start;
    gap: 14px;
    font-size: 16px;
    line-height: 1.375;
    margin: 0 0 15px;
    color: #64748b;
    font-weight: 500;
}
.features li:hover {
    color: rgb(0 76 140);
}
.feature-icon {
    background: rgb(239 246 255);
    width: 21px;
    min-width: 21px;
    height: 21px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    transition: background-color 0.3s;
}
.feature-icon img {
    width: 14px;
    margin: auto;
}
.features li:hover .feature-icon  {
    background-color: rgb(0 163 224);
}
.features li:hover .feature-icon img {
    filter: brightness(0) invert(1);
}
.highlight {
    background: #eff6ff;
    border-left: 6px solid #00A3E0;
    padding: 24.5px;
    border-radius: 20px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}
.highlight p {
    font-style: italic;
    font-weight: 600;
    font-size: 15.75px;
    color: #004C8C;
    line-height: 1.625;
}
.image-wrap {
    border-radius: 24px;
    overflow: hidden;
    max-height: 600px;
    /* transform: rotate(2deg); */
    transition: 0.7s;
    box-shadow: 0 32px 64px -16px rgba(0, 0, 0, 0.15);
}
.image-wrap img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.image-wrap:hover img{
    /* transform: rotate(0); */
    transform: scale(1.05);
}
@media screen and (max-width:767px) {
    .grid {
        grid-template-columns: repeat(1, 1fr);
        gap:56px
    }
    .image-wrap img {
        height: 450px;
    }
    .office-section p.subtitle {
        max-width: 100%;
    }
}
@media screen and (min-width:768px) and (max-width:1024px){
    .image-wrap, .image-wrap img {
        max-height: 450px;
    }
    .features li {
        gap: 10px;
        font-size: 15px;
    }
    .office-section p.subtitle {
        margin: 0 0 20px;
    }
    .features {
        margin-bottom: 25px;
    }
    .highlight {
        padding: 16px;
    }
    .highlight p {
        font-size: 14px;
    }
}

