body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
}

.container {
    max-width: 800px;
    margin: auto;
    padding: 20px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    border: 2px solid #14c5bc;
}

h1 {
    text-align: center;
    padding: 20px;
    background: #14c5bc;
    color: white;
    border-radius: 15px;
    margin-bottom: 20px;
}

.payment-options {
    margin-top: 20px;
    margin: 20px;
}

.payment-option {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
    transition: transform 0.2s, box-shadow 0.2s;
    background: rgb(245, 245, 242);
}

.payment-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.payment-option img {
    width: 50px;
    height: 50px;
    margin-right: 15px;
    border-radius: 5px;
}

.payment-option a {
    text-decoration: none;
    color: #14c5bc;
    font-weight: bold;
    font-size: 18px;
    transition: color 0.2s;
}

.payment-option a:hover {
    color: #0e7c75;
}

.instructions {
    margin-top: 20px;
    background: #e9f7f7;
    padding: 15px;
    border-radius: 10px;
}

.instructions h3 {
    text-align: center;
}

.instructions ul {
    list-style-type: none;
    padding: 0;
}

.instructions li {
    margin: 5px 0;
    color: #555;
}

footer {    text-align: center;
    padding: 20px;
    background: #60a8a5;
    color: white;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
    text-align: center;
    color: #555;
}