/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styling */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    color: #333;
}

/* Header Styling */
header {
    text-align: center;
    margin-bottom: 20px;
}

.logo {
    width: 200px;
    margin-top: 20px;
}

.banner {
    width: 100%;
    height: auto;
    margin-top: 10px;
}

/* Quote Section Styling */
#quote-section {
    text-align: center;
    margin: 20px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

blockquote {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 10px;
}

#quote-author {
    font-size: 1rem;
    color: #555;
}

/* Footer Styling */
footer {
    text-align: center;
    padding: 20px;
    background-color: #222;
    color: #fff;
    position: fixed;
    width: 100%;
    bottom: 0;
}

footer address {
    margin-bottom: 10px;
}

footer .social-links {
    margin-top: 10px;
}

footer .social-links a {
    color: #fff;
    margin: 0 15px;
    font-size: 1.8rem;
    transition: color 0.3s ease;
}

footer .social-links a:hover {
    color: #ff4081; /* highlight on hover */
}
