 /* General Styles */
 body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

h1, h2, h3 {
    color: #1e3a8a; /* VanillaGift blue */
    font-weight: bold;
}


p {
    font-size: 1rem;
    margin-bottom: 15px;
}

a {
    color: #1e3a8a;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

strong {
    color: #111;
}

/* Layout */
header {
    background-color: #1e3a8a;
    color: white;
    padding: 20px 0;
    text-align: center;
    font-size: 1.2rem;
}

header nav a {
    margin: 0 20px;
    color: white;
    font-weight: bold;
    text-transform: uppercase;
}

header nav a:hover {
    text-decoration: underline;
}

/* Main Content Styling */
main {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero {
    background-color: #f0f4f8;
    padding: 50px;
    text-align: center;
    border-radius: 10px;
    margin-bottom: 30px;
}

.hero h1 {
    font-size: 2.5rem;
    color: #1e3a8a;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.1rem;
}

.hero img {
    width: 50%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
}

.cta {
    background-color: #1e3a8a;
    color: white;
    padding: 30px;
    text-align: center;
    margin-top: 50px;
    border-radius: 10px;
}

.cta a {
    background-color: #ff7f50; /* Button color */
    color: white;
    padding: 15px 30px;
    font-size: 1.1rem;
    border-radius: 5px;
    text-decoration: none;
}

.cta a:hover {
    background-color: #ff6347;
}

.cta h2 {
    color: white;
}

.section {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.section h3 {
    font-size: 1.5rem;
    margin-top: 25px;
}

/* Image Styling */
.section img {
    width: 40%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    align-self: center
}

.section img + p {
    text-align: center;
    font-style: italic;
}

.section ul {
    margin-left: 20px;
    list-style-type: disc;
}

.section ul li {
    font-size: 1rem;
    margin-bottom: 10px;
}

/* Footer */
footer {
    background-color: #1e3a8a;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 50px;
}

footer p {
    margin: 0;
}

/* Links for Balance Section */
.balance-link {
    font-weight: bold;
    color: #ff7f50;
}

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

/* Responsive Design */
@media screen and (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .section h2 {
        font-size: 1.5rem;
    }

    .cta a {
        font-size: 1rem;
    }
}