body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #121212;
    color: #fff;
}

header {
    background-color: black;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    width: 80px;
    height: auto;
}

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

nav ul li {
    margin: 0 15px;
}

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

.hero {
    text-align: center;
    padding: 50px;
}

.hero-content {
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
    display: inline-block;
    border-radius: 5px;
}

.hero-image {
    width: 100%;
    max-width: 600px;
}

.content {
    padding: 40px;
    text-align: center;
}

.content h2, .content h3 {
    color: #4CAF50;
}

.content ul {
    text-align: left;
    display: inline-block;
    margin-top: 20px;
}

.content p {
    margin-bottom: 20px;
}

p a {
    color: #a2d530;
    text-decoration: none;
    font-weight: bold;
}
