body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #222;
}

.logo {
    max-width: 300px;
    height: auto;
    margin: 0 auto 2em;
    display: block;
}

header {
    background: #f5f5f5;
    padding: 3em 1em;
    text-align: center;
}

header h1 {
    font-size: 2em;
    margin-bottom: 0.5em;
}

header p {
    font-size: 1.2em;
    max-width: 600px;
    margin: 0 auto 1em;
}

.btn {
    display: inline-block;
    background: #0077cc;
    color: white;
    padding: 0.7em 1.2em;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 1em;
}

.btn:hover {
    background: #005fa3;
}

section {
    padding: 2em 1em;
    max-width: 800px;
    margin: 0 auto;
}

section h2 {
    font-size: 1.5em;
    margin-bottom: 0.5em;
}

section p {
    margin-bottom: 1em;
}

footer {
    background: #eee;
    text-align: center;
    padding: 1em;
    font-size: 0.9em;
}

/* Payment page specific styles */
.payment-container {
    max-width: 800px;
    margin: 2em auto;
    padding: 0 1em;
}

.payment-option {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1.5em;
    margin-bottom: 1.5em;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.payment-option h2 {
    margin-top: 0;
    color: #0077cc;
}

.payment-details {
    background: #f9f9f9;
    padding: 1em;
    border-radius: 4px;
    margin-top: 1em;
    word-break: break-all;
}

.copy-button {
    background: #0077cc;
    color: white;
    border: none;
    padding: 0.5em 1em;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 0.5em;
}

.copy-button:hover {
    background: #005fa3;
}

.payment-icon {
    width: 24px;
    height: 24px;
    vertical-align: middle;
    margin-right: 0.5em;
}

.back-link {
    display: inline-block;
    margin-top: 1em;
    color: #0077cc;
    text-decoration: none;
}

.back-link:hover {
    text-decoration: underline;
}

.payment-anchor {
    text-align: center;
    margin: 2em 0;
}

.what-we-do-img {
    max-width: 300px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 1em;
} 