/* Add these styles to your existing CSS */
.goals-container {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}

.goal-item {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    text-align: left;
    width: calc(33.33% - 1rem);
    margin: 1rem;
    transition: transform 0.3s ease;
}

.goal-item:hover {
    transform: translateY(-5px);
}

.goal-item img {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
}

.goal-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.goal-item p {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.goal-item ul {
    list-style: none;
    padding: 0;
}

/* .goal-item ul li::before {
    content: "→ ";
    color: #3498db;
} */