/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    box-sizing: border-box;
}

header {
    background-color: #ff7043;
    color: white;
    padding: 20px;
}

h1 {
    margin: 0;
}

.categories {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px auto;
    max-width: 600px;
}

.category {
    display: flex;
    align-items: center;
    border-radius: 10px;
    margin: 10px 0;
    padding: 20px;
    width: 100%;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.category:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.category-left {
    flex: 1;
    text-align: center;
}

.category-left img {
    width: 100%;
    max-width: 150px;
    border-radius: 10px;
}

.category-right {
    flex: 2;
    padding-left: 20px;
}

.category-right h2 {
    color: white;
}

footer {
    background-color: #333;
    color: white;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
}

p {
    margin: 0;
}