body {
    margin: 0;
    padding: 0;
    background-color: #6A0099;
    color: white;
    font-family: Arial, sans-serif;
    text-align: center;
}

.container {
    width: 1980px;
    height: 1080px;
    margin: auto;
}

header {
    padding: 20px;
}

.logo {
    width: 150px;
    border-radius: 9999px;
}

h1 {
    font-size: 50px;
}

.products {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 50px;
}

.product {
    background-color: #444;
    padding: 20px;
    width: 250px;
    height: 300px;
    border-radius: 10px;
    text-align: center;
}

.product img {
    width: 100px;
}

.product p {
    font-size: 20px;
    font-weight: bold;
}

.product span {
    color: #00ff00;
    font-size: 24px;
}

footer {
    position: absolute;
    bottom: 20px;
    width: 100%;
    background-color: #33004D;
    padding: 20px;
}

footer a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
}
.policy-content {
    width: 45%;
    margin: auto;
    padding: 20px;
}

.scrollable-text {
    max-height: 600px;
    overflow-y: scroll;
    background-color: #222;
    padding: 20px;
    border-radius: 10px;
}
