body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-image: url('coffee-background.jpg'); /* Фоновое изображение */
    background-size: cover;
    background-position: center;
}

.container {
    text-align: center;
    background: rgba(255, 255, 255, 0.9); /* Полупрозрачный белый фон */
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    max-width: 90%;
    width: 100%;
}

h1 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #4a2c2a; /* Цвет кофе */
}

.description {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
}

#payment-form {
    margin-bottom: 30px;
}

.support {
    margin-top: 20px;
}

.support p {
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
}

.support a {
    display: inline-block;
    margin: 5px;
    padding: 10px 20px;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
}

.whatsapp {
    background-color: #25d366;
}

.telegram {
    background-color: #0088cc;
}

.whatsapp:hover {
    background-color: #1da851;
}

.telegram:hover {
    background-color: #0077b5;
}