.cards-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    width: 300px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.card-content {
    padding: 30px;
    text-align: center;
}

.card-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.card h2 {
    margin: 0 0 10px 0;
    color: #333;
    font-size: 24px;
}

.card p {
    margin: 0;
    color: #666;
    line-height: 1.5;
}

/* Add some responsive design */
@media (max-width: 700px) {
    .cards-container {
        gap: 20px;
    }

    .card {
        width: 100%;
        max-width: 300px;
    }
}

.division-divider {
    margin: 48px 0 24px 0;
    text-align: center;
    position: relative;
}

.division-divider h2 {
    background: white;
    color: #666;
    display: inline-block;
    padding: 0 16px;
    position: relative;
    z-index: 1;
}

.division-divider:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    border-top: 1px solid #dee2e6;
    z-index: 0;
} 