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

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

header {
    background-color: black;
    color: white;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    font-size: 28px;
    font-weight: bold;
}

nav ul {
    list-style: none;
}

nav ul li {
    display: inline;
    margin-left: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}

#hero {
    position: relative;
    background-color: black;
    color: white;
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

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

.hero-text p {
    font-size: 20px;
}

.cta-btn {
    display: inline-block;
    background-color: #00b894; /* Slight green accent */
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 20px;
}

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

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

#services .service {
    margin: 20px 0;
}

#services .service h3 {
    font-size: 22px;
    color: #0984e3; /* Slight blue accent */
}

footer {
    background-color: black;
    color: white;
    text-align: center;
    padding: 10px 0;
}
