body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    background-color: #1a1a1a;
    color: #e0e0e0;
}

header {
    background-color: #2c2c2c;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #c8a2c8; /* Lilac */
}

.logo {
    height: 50px;
}

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

nav ul li {
    margin-left: 2rem;
}

nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #c8a2c8; /* Lilac */
}

.hero {
    position: relative;
    text-align: center;
    color: white;
}

.banner {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.6);
    padding: 2rem;
    border-radius: 10px;
}

h1 {
    font-size: 3rem;
    margin: 0;
    color: #c8a2c8; /* Lilac */
}

.cta-button {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.8rem 1.5rem;
    background-color: #c8a2c8; /* Lilac */
    color: #1a1a1a;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #b48ab4;
}

#about {
    padding: 4rem 2rem;
    text-align: center;
}

h2 {
    font-size: 2.5rem;
    color: #c8a2c8; /* Lilac */
    margin-bottom: 1rem;
}

footer {
    text-align: center;
    padding: 1rem;
    background-color: #2c2c2c;
    border-top: 1px solid #444;
}
