body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #121212;
    color: #fff;
}
header {
    background-color: #1e1e1e;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header h1 {
    font-size: 1.8em;
}
nav ul {
    list-style-type: none;
    padding: 0;
    display: flex;
}
nav ul li {
    margin-left: 20px;
}
nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1em;
    transition: color 0.3s;
}
nav ul li a:hover {
    color: #ff6b00;
}
.hero {
    background: url('hero-image.jpg') center/cover no-repeat;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    color: white;
}
.hero h2 {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 20px;
}
.hero .cta {
    background-color: #ff6b00;
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.2em;
    transition: background 0.3s;
}
.hero .cta:hover {
    background-color: #e65a00;
}
.container {
    padding: 60px 40px;
    max-width: 1200px;
    margin: auto;
    text-align: center;
}
.container h2 {
    font-size: 2.2em;
    margin-bottom: 15px;
}
.container p {
    font-size: 1.1em;
    opacity: 0.8;
}
.footer {
    background-color: #1e1e1e;
    text-align: center;
    padding: 20px;
    margin-top: 50px;
}