.service-page-section {
    padding: 80px 0;
    background-color: #fdfcf8; /* Very subtle off-white background */
}

.service-card-modern {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* --- Header (Icon + Title) --- */
.service-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.service-icon-box {
    width: 50px;
    height: 50px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon-box img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: invert(1);
}

.service-icon-box i {
    font-size: 40px;
    color: var(--color-2);
}

.service-title {
    margin: 0;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.3;
    font-family: var(--font-01);
}

.service-title a {
    color: var(--color-2);
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-title a:hover {
    color: var(--color-1);
}

/* --- Summary Text --- */
.service-summary {
    flex-grow: 1; /* Pushes the image/link to the bottom evenly */
}

.service-summary p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    font-family: var(--font-02);
}

/* --- Read More Link --- */
.service-read-link {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-2);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 25px;
    transition: color 0.3s ease;
    font-family: var(--font-01);
}

.service-read-link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.service-read-link:hover {
    color: var(--color-2);
}

.service-read-link:hover i {
    transform: translate(3px, -3px); /* Little diagonal hop on hover */
}

/* --- Bottom Image --- */
.service-card-image {
    width: 100%;
    height: 180px;
    border-radius: 10px;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card-modern:hover .service-card-image img {
    transform: scale(1.05); /* Slight zoom effect on card hover */
}