/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    background-color: #f0f8ff;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header Styles */
header {
    background-color: #1F0161; /* Deep purple */
    color: white;
    padding: 20px;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 2.5rem;
}

header p {
    margin: 5px 0 0;
    font-size: 1.2rem;
}

/* Banner Styles */
.banner {
    background-color: white;
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.banner h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.banner p {
    font-size: 1.1rem;
    color: #666;
}

/* Purchase Options Styles */
.purchase-options {
    text-align: center;
    margin: 20px 0;
}

.purchase-options h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    padding: 10px 20px;
    font-size: 1rem;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn.paypal {
    background-color: #003087; /* PayPal blue */
}

.btn.credit-card {
    background-color: #28a745; /* Credit card green */
}

.btn:hover {
    opacity: 0.9;
}

/* Testimonial Styles */
.testimonial {
    background-color: white;
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.testimonial h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.secure-badge img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Footer Styles */
footer {
    background-color: #1F0161; /* Deep purple */
    color: white;
    padding: 15px 0;
    margin-top: 30px;
}

footer .secure-badge img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}