/* Basic reset and global settings */
body, h1, h2, p, ul, li {
    margin: 0;
    padding: 0;
    list-style: none;
}

body {
    font-family: Arial, sans-serif;
    color: #333;
    background: #f4f4f4;
    line-height: 1.6;
}

/* Header and navigation styles */
header {
    background: #000;
    color: #fff;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .logo {
    width: 150px;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
}

/* Main content and sections */
main {
    padding: 20px;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    max-height: 200px; /* Limit the height of the hero image */
    object-fit: cover; /* Ensures the image covers the area without distortion */
}

section {
    background: #fff;
    margin-top: 20px;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.button {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 10px;
    background: #0078d4;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
}

.button:hover {
    background: #0056a3;
}

/* Footer styles */
footer {
    text-align: center;
    padding: 10px 20px;
    background: #000;
    color: #fff;
}

/* Media queries for responsiveness */
@media (max-width: 768px) {
    header, nav ul {
        flex-direction: column;
    }

    nav ul li {
        margin: 5px 0;
    }

    header .logo {
        margin-bottom: 10px;
    }
}