
/* General Reset */
body, h1, h2, h3, p, ul, li {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    color: #2E3A59; /* Deep blue for text */
    background-color: #F9FAFC; /* Soft white background for a clean look */
    line-height: 1.6;
}

/* Main Page Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header Styles */
header {
    background-color: #1E88E5; /* Bold blue for energy and trust */
    color: white;
    padding: 20px 0;
    text-align: center;
    border-bottom: 5px solid #FFC107; /* Gold accent */
}

header h1 {
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

header p {
    font-size: 1.2rem;
    font-style: italic;
}

/* Call-to-Action Button */
button.cta {
    display: inline-block;
    background-color: #FFC107; /* Gold for action and hope */
    color: #1E88E5; /* Blue for contrast */
    padding: 12px 25px;
    font-size: 1.2rem;
    text-transform: uppercase;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

button.cta:hover {
    background-color: #FFB300; /* Slightly darker gold for hover */
}

/* Section Styles */
section {
    margin: 30px 0;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

section h2 {
    font-size: 2rem;
    color: #1E88E5; /* Blue to match header */
    margin-bottom: 15px;
}

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

section .highlight {
    color: #FFC107;
    font-weight: bold;
}

/* Footer Styles */
footer {
    background-color: #2E3A59; /* Darker blue for balance */
    color: white;
    text-align: center;
    padding: 15px 0;
    margin-top: 20px;
}

footer p {
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }
    section h2 {
        font-size: 1.8rem;
    }
    button.cta {
        font-size: 1rem;
    }
}
