body {
    font-family: 'Poppins', sans-serif;
    background-color: #000;
    color: #fff;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow-y: auto;
}

.container {
    width: 90%;
    max-width: 1200px;
    background-color: #121212;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.content {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.left-section, .right-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 10px;
}

.pack-image {
    width: 80%;
    max-width: 300px;
    margin-bottom: 20px;
    border-radius: 10px;
}

h1 {
    font-size: 2em;
    margin-bottom: 0.5em;
}

p {
    margin: 0.5em 0;
    text-align: center;
}

.price {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.buy-button-container {
    margin-bottom: 20px;
}

.buy-button {
    background-color: #fff;
    color: #000;
    border: none;
    padding: 10px 20px;
    font-size: 1em;
    cursor: pointer;
    border-radius: 10px;
    transition: background-color 0.3s ease;
}

.buy-button:hover {
    background-color: #ddd;
}

.description, .pack-contents {
    line-height: 1.5;
    text-align: center;
}

.footer {
    text-align: center;
    font-size: 0.9em;
    color: #bbb;
}

.footer a {
    color: #bbb;
    text-decoration: none;
    margin: 0 10px;
}

.footer a:hover {
    text-decoration: underline;
}

@media (min-width: 768px) {
    .content {
        flex-direction: row;
        justify-content: space-between;
    }

    .left-section, .right-section {
        width: 45%;
    }

    h1 {
        font-size: 3em;
    }

    p, .price, .buy-button {
        font-size: 1.5em;
    }

    .pack-image {
        max-width: 400px;
    }
}

@media (max-width: 767px) {
    .content {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    h1 {
        font-size: 2em;
    }

    p, .price, .buy-button {
        font-size: 1em;
    }

    .pack-image {
        max-width: 300px;
    }
}