.nd-section-wrapper-55 {
    font-family: var(--e-global-typography-text-font-family), sans-serif;
    padding: 80px 20px;
    background-color: transparent;
}

.nd-header {
    text-align: center;
    margin-bottom: 120px; /* Large margin to account for overlapping images */
}

.nd-heading {
    font-size: 48px;
    font-weight: 500;
    color: #333;
    margin: 0 0 15px 0;
    font-family: 'Times New Roman', Times, serif; /* Elegant serif fallback as per design */
}

.nd-subheading {
    font-size: 16px;
    font-weight: 600;
    color: #111;
    margin: 0;
}

.nd-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.nd-card-col {
    flex: 0 1 calc(50% - 20px);
    min-width: 320px;
    margin-bottom: 60px; /* Space for the overlap of the next row if needed */
}

/* Ensure the 3rd item is centered if it's the last one on an odd row */
.nd-card-col:last-child:nth-child(odd) {
    flex: 0 1 calc(50% - 20px); /* Keep same width */
}

.nd-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 0 40px 40px 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    position: relative;
    border: 1px solid rgba(0,0,0,0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.nd-card-image-wrapper {
    display: flex;
    justify-content: center;
    margin-top: -60px; /* Pull the image up to overlap the card */
    margin-bottom: 30px;
}

.nd-card-image,
.nd-card-placeholder {
    width: 200px;
    height: 200px;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Default placeholder colors just for preview if no image */
.nd-card-col:nth-child(1) .nd-card-placeholder { background-color: #6B9A76; }
.nd-card-col:nth-child(2) .nd-card-placeholder { background-color: #3B66D9; }
.nd-card-col:nth-child(3) .nd-card-placeholder { background-color: #E2B958; }


.nd-card-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.nd-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #111;
    margin: 0 0 15px 0;
    line-height: 1.4;
}

.nd-card-link-wrapper {
    margin-top: auto; /* Push link to bottom if content varies */
}

.nd-card-link {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
    cursor: pointer;
}

.nd-card-link:hover {
    color: var(--e-global-color-primary, #3B828C);
}

.nd-card-link i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.nd-card-link:hover i {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .nd-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .nd-card-col {
        flex: 1 1 100%;
        width: 100%;
        max-width: 450px;
    }
    
    .nd-heading {
        font-size: 36px;
    }
}