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

/* Navigation Menu */
nav {
    background-color: #2c3e50;
    padding: 10px 0;
}
nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
nav ul li {
    margin: 0 15px;
}
nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}
nav ul li a:hover {
    text-decoration: underline;
}

/* Header */
header {
    background: linear-gradient(to right, #3498db, #2ecc71);
    color: white;
    position: relative;
    text-align: center;
    padding: 80px 20px 50px;
}

/* Logo Positioning */
header .site-logo {
    position: absolute;
    top: 10px;
    left: 10px;
}
header .site-logo img {
    max-height: 40px;
    height: auto;
    width: auto;
    display: block;
}

/* Header Text */
header h1 {
    margin: 0;
    font-size: 2.5em;
}
header p {
    font-size: 1.2em;
}

/* Main Content */
section {
    padding: 20px;
    max-width: 1000px;
    margin: auto;
}

/* Content Blocks */
.content-block {
    background: white;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 15px 0;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
    }
    nav ul li {
        margin: 10px 0;
    }
    header h1 {
        font-size: 2em;
    }
}
/* Global link styling */
a {
    color: #444;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

