/* Reset default styles */
body {
    font-family: 'Arial', sans-serif; 
    margin: 0;
    padding: 0;
    background-color: #212121; 
    color: #e0e0e0; 
}

/* Header styles */
header {
    background-color: #000000; 
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ... rest of your CSS ... */ 
body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
}

/* Header styles */
header {
    background-color: #1a1a1a;
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

h1 {
    margin: 0;
    font-size: 24px;
}

nav {
    display: flex;
    list-style: none;
    padding: 0;
}

nav li {
    margin-right: 20px;
}

nav a {
    text-decoration: none;
    color: white;
    font-weight: bold;
}

/* Main content styles */
main {
    padding: 20px;
}

.hero {
    text-align: center;
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 10px;
}

.hero h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 16px;
    line-height: 1.6;
}

.hero button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-weight: bold;
}

/* About section styles */
.about {
    margin-top: 50px;
    font-size: 18px;
    line-height: 1.6;
}
