/* Global Styles */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #333; /* Dark background color */
    color: #fff; /* Light text color for good readability */
}

header {
    background-color: #444; /* Darker background color for header */
    color: #fff;
    padding: 1rem;
    text-align: center;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
    background-color: #444; /* Darker background color for navigation */
}

nav li {
    margin-right: 20px;
    color: #999; /* Light gray text color for menu items */
}

nav a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s ease-in-out; /* Add a smooth hover effect */
}

nav a:hover {
    color: #ccc; /* Lighter gray text color on hover */
}

main {
    max-width: 800px;
    margin: auto;
    background-color: #333; /* Dark background color for main content */
}

section#hero {
    background-image: linear-gradient(to bottom, #444, #666);
    padding: 2rem;
    color: #fff; /* White text color for hero section */
}

h1 {
    font-size: 36px;
    color: #ccc; /* Light gray text color for headings */
}

button {
    background-color: #555;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out; /* Add a smooth hover effect */
}

button:hover {
    background-color: #666; /* Darker gray background color on hover */
}

section#features ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
    background-color: #444; /* Darker background color for features section */
}

li i {
    font-size: 24px;
    margin-right: 10px;
    color: #999; /* Light gray text color for icons */
}

footer {
    background-color: #444;
    color: #fff;
    padding: 1rem;
    text-align: center;
    position: fixed; /* Add this */
    right: 0; /* Add this to make sure the footer stays on the right side of the page */
    left: 0; /* Add these two for full-width footer */
    bottom: 10px; /* This is now redundant because we're using absolute positioning */
}

