/* === Modern, Bright Page Layout === */
body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.6;
    max-width: 750px;
    margin: auto;
    padding: 30px 25px;
    background: #ffffff;
    color: #1c1c1c;
}

/* === Header Image === */
header {
    width: 100%;
    margin-bottom: 20px;
    text-align: center; /* optional, centers image */
}

header img {
    width: 100%;
    height: auto; /* maintains aspect ratio */
    display: block;
}

/* === Top Navigation Menu === */
nav.top-menu {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

nav.top-menu a {
    color: #1f3c88;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    padding: 6px 12px;
    transition: color 0.3s ease, background 0.3s ease;
}

nav.top-menu a:hover {
    color: #feb47b;
}

/* === Footer Menu === */
footer {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 2px solid #f39c12;
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

footer a {
    color: #1f3c88;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #feb47b;
}

/* === Headings === */
h1 {
    color: #1f3c88;
    font-size: 2.5em;
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: 1px;
}

h2 {
    color: #3c5aa6;
    margin-top: 35px;
    margin-bottom: 12px;
    font-weight: 600;
}

h3 {
    color: #3c5aa6;
    margin-bottom: 20px;
    font-weight: 500;
}

/* === Paragraphs, Lists, Quotes === */
p, ul, ol, blockquote {
    margin-bottom: 22px;
    font-size: 1.05em;
}

ul {
    list-style: none;
    padding-left: 0;
}

ul li::before {
    content: "✔️ ";
    color: #f39c12;
    font-weight: bold;
    margin-right: 6px;
}

/* === Buttons === */
button {
    background: linear-gradient(135deg, #ff7e5f, #feb47b);
    color: white;
    padding: 14px 28px;
    border: none;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    margin-top: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

/* === Blockquotes === */
blockquote {
    background: linear-gradient(90deg, #fef9e7, #fff3e0);
    border-left: 6px solid #ff7e5f;
    padding: 15px 20px;
    margin-left: 0;
    font-style: italic;
    color: #2c3e50;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* === Additional refinements === */
a {
    color: #ff7e5f;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #feb47b;
    text-decoration: underline;
}

hr {
    border: none;
    height: 2px;
    background: #f39c12;
    margin: 40px 0;
}