* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

header {
    background-color: #333;
    color: white;
    padding: 10px 20px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

.nav-links {
    list-style-type: none;
}

.nav-links li {
    display: inline;
    margin-right: 15px;
}

.nav-links li a {
    color: white;
    text-decoration: none;
}

.hero {
    height: 100vh;
    background: url('hero-image.jpg') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 50px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
}

.cta-button {
    background-color: #333;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
}

.about-section,
.services-section,
.contact-section {
    padding: 50px 20px;
    text-align: center;
}

.about-section h2,
.services-section h2,
.contact-section h2 {
    margin-bottom: 20px;
    font-size: 32px;
}

.services-section {
    background-color: #f4f4f4;
}

.service-item {
    margin-bottom: 30px;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: white;
}