* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #eef2f5;
    font-family: Arial, sans-serif;
    padding: 30px;
}

.cards-container {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
}

.card {
    background: white;
    width: 280px;
    border-radius: 50px;
    padding: 20px;
    text-align: center;
}

.icon {
    font-size: 60px;
    margin-bottom: 15px;
}

h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2d916b;
}

p {
    font-size: 14px;
    line-height: 18px;
    color: #000000;
    margin-bottom: 12px;
}

.other {
    font-size: 18px;
    color: #e61717;
    margin-bottom: 15px;
    font-weight: bold;
}

.card-btn {
    display: inline-block;
    background: #2c5a3e;
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 20px;
    font-size: 14px;
    border: none;
}

.card-btn:hover {
    background: orange;
}