/* General Reset */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: Arial, sans-serif; }

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    padding: 20px 50px;
    background: #333;
    color: white;
}

nav ul { display: flex; list-style: none; }
nav ul li { margin-left: 20px; }
nav ul li a { color: white; text-decoration: none; }

/* Hero Section */
.hero {
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: #f4f4f4;
}

h1 { font-size: 3rem; margin-bottom: 10px; }

button {
    padding: 10px 20px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover { background: #0056b3; }

/* Footer */
footer { text-align: center; padding: 20px; background: #333; color: white; }
