body {
    font-family: 'Comic Neue', cursive;
    background-color: #fff5f5;
    margin: 0;
    padding: 0;
    color: #333;
}

.header {
    text-align: center;
    padding: 20px;
    background-color: #ff6b6b;
    color: white;
}

.logo {
    width: 200px;
    margin-top: 10px;
}

.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
    gap: 20px;
}

.feature {
    background-color: white;
    border-radius: 10px;
    padding: 15px;
    width: 200px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.feature:hover {
    transform: scale(1.05);
}

.feature img {
    width: 100%;
    border-radius: 8px;
    height: 120px;
    object-fit: cover;
}

h1 {
    margin-bottom: 5px;
    font-size: 2.2em;
}

h3 {
    color: #ff6b6b;
    margin-top: 10px;
}
