/* Animations */
@keyframes bounce {
    0%, 100% { transform: translateY(-25%); animation-timing-function: cubic-bezier(0.8, 0, 1, 1); }
    50% { transform: translateY(0); animation-timing-function: cubic-bezier(0, 0, 0.2, 1); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: .5; }
}

.animate-bounce { 
    animation: bounce 1s infinite; 
}

.animate-pulse { 
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; 
}

/* Process Card Layouts */
.process-card {
    min-height: 300px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.process-card > div {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.process-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Text content area with fixed height */
.process-card-content > div:first-child {
    min-height: 180px !important;
}

@media (min-width: 640px) {
    .process-card-content > div:first-child {
        min-height: 200px !important;
    }
}

/* Button container centered at bottom */
.process-card-content > div:last-child {
    display: flex !important;
    justify-content: center !important;
    align-items: flex-end !important;
    width: 100% !important;
}

/* Benefit Cards Alignment */
.benefit-card {
    display: grid;
    grid-template-rows: auto auto 1fr;
    height: 100%;
    align-items: start;
}

.benefit-card h3 {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-card p {
    height: 80px;
    display: flex;
    align-items: start;
    justify-content: center;
}

@media (min-width: 768px) {
    .benefit-card p {
        height: 72px;
    }
}

@media (min-width: 1024px) {
    .benefit-card p {
        height: 80px;
    }
}

