@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@600&family=DM+Sans:wght@400;500;700&display=swap');

.elima-grid-container-fd83cc2b {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
}

.elima-card-fd83cc2b {
    position: relative;
    background-color: #ffffff;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
    padding: 32px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.elima-card-fd83cc2b:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    border-color: #1B6CA8;
}

.elima-card-link-fd83cc2b {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.elima-card-content-fd83cc2b {
    display: flex;
    flex-direction: column;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.elima-icon-wrapper-fd83cc2b {
    font-size: 32px;
    color: #1B6CA8;
    margin-bottom: 24px;
}

.elima-icon-wrapper-fd83cc2b svg {
    width: 32px;
    height: 32px;
    fill: #1B6CA8;
}

.elima-audience-label-fd83cc2b {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #6B7280;
    margin-bottom: 8px;
}

.elima-service-name-fd83cc2b {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 600;
    color: #111827;
    margin: 0 0 16px 0;
    line-height: 1.2;
}

.elima-description-fd83cc2b {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #4B5563;
    margin: 0 0 32px 0;
    flex-grow: 1;
}

.elima-cta-wrapper-fd83cc2b {
    display: flex;
    align-items: center;
    color: #1B6CA8;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 15px;
    margin-top: auto;
}

.elima-cta-arrow-fd83cc2b {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.elima-card-fd83cc2b:hover .elima-cta-arrow-fd83cc2b {
    transform: translateX(5px);
}

@media (max-width: 1024px) {
    .elima-grid-container-fd83cc2b {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .elima-grid-container-fd83cc2b {
        grid-template-columns: 1fr;
    }
}