.hero-block {
    background-color: #007bff;
    color: white;
    padding: 25px 0;
    text-align: center;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-block:hover {
    transform: scale(1.02);
}

.hero-block h1 {
    font-size: 1.5rem;
    margin-bottom: 0;
}

.hero-block p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.hero-block a {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

/* Add some spacing between rows */
.row {
    margin-bottom: 30px;
} 