.hs-cta-pin-wrapper-4ca98e9f {
    width: 100%;
    position: relative;
    /* Height will be set dynamically via JS to allow for scrolling */
}

.hs-cta-sticky-container-4ca98e9f {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hs-cta-section-heading-4ca98e9f {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 20px;
}

.hs-cta-scroll-track-4ca98e9f {
    display: flex;
    gap: 30px;
    padding: 30px;
    will-change: transform; /* Optimize for animation */
}

.hs-cta-card-4ca98e9f {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.hs-cta-card-4ca98e9f:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.hs-cta-card-image-wrapper-4ca98e9f {
    width: 100%;
    height: 350px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5; /* Subtle background for images that don't fill the space */
}

.hs-cta-card-image-wrapper-4ca98e9f img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* Center and fit to scale without cropping */
    display: block;
}

.hs-cta-card-content-4ca98e9f {
    padding: 32px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.hs-cta-card-heading-4ca98e9f {
    margin: 0 0 16px 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.hs-cta-card-description-4ca98e9f {
    margin: 0;
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}