body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #000000;
    color: #ffffff;
}

header {
    background: #002244;
    color: #fff;
    padding: 20px;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 28px;
}

.container {
    max-width: 1080px;
    margin: 20px auto;
    padding: 20px;
    background: #181818;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.container h2 {
    color: #002244;
    margin-bottom: 20px;
}

.fees-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.fees-table th,
.fees-table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
}

.fees-table th {
    background: #002244;
    color: #fff;
}

.fees-table tr:nth-child(even) {
    background: #f2f2f2;
}

.payment-methods {
    margin-bottom: 20px;
}

.payment-methods h3 {
    color: #002244;
    margin-bottom: 10px;
}

.payment-methods ul {
    list-style: none;
    padding: 0;
}

.payment-methods ul li {
    margin-bottom: 10px;
}

footer {
    background: #002244;
    color: #fff;
    text-align: center;
    padding: 10px;
    margin-top: 20px;
}

/* ... previous CSS code ... */

.back-button {
    position: absolute;
    top: 20px;
    left: 100px;
    background-color: #827bbab5;
    color: white;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
}

/* Add this media query for mobile */
@media screen and (max-width: 1201px) {
    .back-button {
        top: 10px;
        left: 5px;
        padding: 10px 18px;
        font-size: 12px;
        margin-bottom: 40px;
    }

    .spacer {
        height: 1rem;
        /* Adjust as needed */
    }

    ul {
        font-size: 0.8rem;
    }

}

.back-button:hover {
    background-color: #404c62;
}