body {
    font-family: Arial, sans-serif;
    text-align: center;
    padding: 50px;
}

.header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
}

.header h1 {
    font-size: 48px;
    font-weight: bold;
    margin: 0;
}

.header img {
    width: 50px;
    height: 50px;
}

.services {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.card {
    width: 200px;
    padding: 20px;
    border-radius: 10px;
}

.card img {
    height: 100px;
    margin-bottom: 10px;
}

.card h3 {
    margin: 10px 0 0 0;
    font-size: 20px;
}

.card p {
    margin: 5px 0 15px 0;
    font-weight: bold;
}

.card button {
    background-color: red;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.card button:hover {
    background-color: darkred;
}
