body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #eaeaea;
    color: #333;
}

header {
    background-color: #2c3e50;
    color: white;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.header-title {
    font-size: 2.5em;
    margin: 10px 0;
}

.packs-container {
    width: 90%;
    max-width: 800px;
    margin: 20px auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pack-item {
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.pack-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.pack-item img {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    margin-right: 20px;
    cursor: pointer;
}

.pack-details {
    flex: 1;
}

.pack-details h3 {
    font-size: 1.5em;
    color: #2c3e50;
    margin: 0;
}

.pack-details p {
    font-size: 1.1em;
    color: #333;
    margin: 10px 0 0;
}

footer {
    text-align: center;
    padding: 10px 0;
    background-color: #2c3e50;
    color: white;
}