body {
    font-family: 'Arial', sans-serif;
    background-color: #121212;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: 100vh;
    color: #fff;
}

.info-section {
    background-color: #2e2e2e;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    padding: 20px;
    max-width: 1000px;
    margin-bottom: 20px;
    text-align: center;
    color: #fff;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    justify-items: center;
    align-items: start;
    padding: 20px;
    max-width: 1200px;
}

.container {
    background-color: #1e1e1e;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    padding: 20px;
    width: 350px;
    text-align: center;
}

h1 {
    color: #fff;
    margin-bottom: 20px;
}

.payment-info {
    text-align: left;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px;
    border-bottom: 1px solid #333;
    cursor: pointer;
    word-wrap: break-word;
    white-space: normal;
}

.info-item:hover {
    background-color: #333;
}

.label {
    font-weight: bold;
    color: #bbb;
}

.value {
    flex-grow: 1;
    margin-left: 10px;
    color: #fff;
    word-wrap: break-word;
    white-space: normal;
}

.bank-logo {
    width: 50px;
    height: auto;
    margin-right: 10px;
    object-fit: contain;
}

.alert-box {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 20px;
    background-color: #28a745;
    color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.corporate-info {
    background-color: #2e2e2e;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    padding: 20px;
    max-width: 1000px;
    margin-top: 20px;
    text-align: left;
    color: #fff;
}

@media (max-width: 768px) {
    .grid-container {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 10px;
    }

    .container {
        width: 100%;
        padding: 15px;
    }

    .info-section, .corporate-info {
        padding: 15px;
        max-width: 100%;
    }
}
