/* Reset some default browser styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Basic body styles */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4; /* Light gray background for a soft look */
    color: #333; /* Dark gray text for easy reading */
}

/* Header Styles */
header {
    background-color: #333; /* Dark header background */
    color: #fff; /* White text for contrast */
    padding: 20px 0;
}

header h1 {
    text-align: center;
    font-size: 2.5rem;
}

header h2 {
    text-align: center;
    font-size: 1.5rem;
    font-weight: lighter;
    margin-top: 10px;
}

header nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 10px 0;
}

header nav ul li {
    margin: 0 15px;
}

header nav ul li a {
    text-decoration: none;
    color: #fff; /* White links */
    font-weight: bold;
    font-size: 1.1rem;
    transition: color 0.3s;
}

header nav ul li a:hover {
    color: #00bcd4; /* Light blue hover effect */
}

/* Main Section Styles */
section {
    padding: 50px 20px;
    text-align: center;
}

section h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
}

/* Container class for layout consistency */
.container {
    width: 80%;
    margin: 0 auto;
}

/* Footer Styles (Add if you have a footer later) */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
}

/* Add a simple mobile-responsive feature */
@media screen and (max-width: 768px) {
    header nav ul {
        flex-direction: column;
        align-items: center;
    }

    header nav ul li {
        margin: 10px 0;
    }

    section {
        padding: 30px 20px;
    }
}
