/* General Page Setup */
body {
    background-color: #f4f4f9;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
}

/* Centered container */
.container {
    width: 580px;
    margin: 30px auto;
    background: white;
    padding: 20px;
    border: 2px solid #ddd;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* HERO banner */
.hero img {
    width: 100%;
    border-radius: 10px;
}

/* Headings */
h1 {
    text-align: center;
    color: #1e40af;
}

h2 {
    color: #333;
    border-left: 4px solid #1e40af;
    padding-left: 8px;
}

/* Paragraphs */
p {
    line-height: 1.6;
}

/* Blockquote Section */
.quote-section {
    border-top: 1px solid #ccc;
    margin-top: 20px;
    padding-top: 10px;
}

blockquote {
    font-style: italic;
    background: #e0e7ff;
    padding: 15px;
    border-left: 5px solid #1e40af;
    margin: 0;
}

/* Footer */
footer {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    border-top: 1px solid #ccc;
    padding-top: 10px;
}

footer a {
    color: #1e40af;
    text-decoration: none;
}
footer a:hover {
    text-decoration: underline;
}
