.service-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #9ECAD8;
    padding: 40px 20px;
    text-align: center;
    border-radius: 25px;
}
.service-hero__title {
    margin-bottom: 16px;
}
.service-hero__text {
    max-width: 800px;
}
.service-overview {
    padding: 75px 0;
}
.section-title {
    margin-bottom: 30px;
}
.service-overview__intro {
    margin-bottom: 30px;
}
.requirements {
    padding: 75px 0;
    background-color: #E2ECEF;
}
.requirements__prompt {
    margin-bottom: 30px;
}
.requirements-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 600px;
    cursor: pointer;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.requirements-image-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.requirements-image {
    width: 80%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 15px;
    transition: filter 0.3s ease;
}
.requirements-image-placeholder {
    position: relative;
    display: inline-block;
}
.requirements-image-overlay {
    position: absolute;
    inset: 0;
    width: 80%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    transition: background 0.3s ease;
}
.requirements-image-overlay:hover {
    background: rgba(0, 0, 0, 0.7);
}
.requirements-image-wrapper:hover .requirements-image-overlay {
    opacity: 1;
}
.requirements-image-overlay svg {
    width: 48px;
    height: 48px;
    margin-bottom: 8px;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
}
.requirements-image-overlay p {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
}
.modal-content {
    position: relative;
    max-width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 32px;
    color: #333;
    cursor: pointer;
    z-index: 10;
    background: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.modal-close:hover {
    color: #e74c3c;
}
.modal-image {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    display: block;
}
.what-we-do {
    padding:75px 0;
    background-color: var(--color-bg-offwhite);
}
.what-we-do__container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.what-we-do-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    width: 100%;
    max-width: 1200px;
}
.what-we-do-card {
    background-color: #9ECAD8;
    border-radius: 21px;
    padding: 24px;
    text-align: center;
    transition: transform 0.3s ease;
}
.what-we-do-card:hover {
    transform: translateY(-5px);
}
.what-we-do-card__title {
    margin-bottom: 8px;
    color: #2E4650;
}
.what-we-do-card__text {
    color: #2E4650;
}
@media (max-width: 1100px) {
    .requirements-image-wrapper {
        max-width: 500px;
    }
}
@media (max-width: 825px) {
    .what-we-do-card {
        padding: 20px;
    }
    .service-hero__title {
        font-size: 32px !important;
    }
    .what-we-do-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}
@media (max-width: 500px) {
    .requirements-image {
        width: 100%;
    }
    .requirements-image-overlay {
        width: 100%;
    }
    .what-we-do-card__title {
        font-size: 22px;
    }
}