.about-us {
    flex-grow: 1;
    background-image: url('../img/background-1.png');
    background-color: #fbfbfb;
    background-position: center center;
    border-radius: 20px;
}
.about-us__content {
    max-width: 60%;
}
.about-us__content p {
    color: var(--text-dark);
    font-size: 24px;
    font-style: normal;
    font-family: "Parkinsans";
    font-weight: 400;
    line-height: 45px;
    letter-spacing: -1.1px;
    text-align: justify;
}

/* Services Section */
.services {
    flex-grow: 1;
}

.services__title {
    text-align: center;
    width: 100%;
}

.services__content {
    max-width: 50%;
    margin:0 auto;
}

.services__content p {
    color: var(--text-dark);
    font-size: 18px;
    font-style: normal;
    font-family: "Parkinsans";
    font-weight: 400;
    line-height: 1.6;
    text-align: center;
}

.services__title h3{
    justify-content: center;
    font-size: 55px;
    font-style: normal;
    font-weight: 400;
    line-height: 60px;
    letter-spacing: -1.1px;
}

/* Services Grid Layout */
.services-grid {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-card {
    position: relative;
    display: block;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-card__thumbnail {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    min-height: 280px;
    overflow: hidden;
}

.service-card__thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-card__overlay_text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    box-sizing: border-box;
}

.service-card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(1, 139, 170, 1) 0%, rgba(51, 220, 228, 1) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    box-sizing: border-box;
    transition: all 1s ease;
    opacity: 0.7;
}

.service-card:hover .service-card__overlay {
    opacity: 0.95;
}


.service-card__title {
    color: var(--text-white);
    font-size: 42px;
    font-weight: 600;
    margin: 0 0 15px 0;
    text-align: center;
    font-family: "Nunito", sans-serif;
}

.service-card__description {
    color: var(--text-white);
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
    font-family: "Parkinsans", sans-serif;
    font-weight: 400;
}

.service-card__description p {
    margin: 0;
    color: var(--text-white);
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card__overlay {
        padding: 30px 20px;
    }

    .service-card__title {
        font-size: 24px;
    }

    .service-card__description {
        font-size: 14px;
    }
}

