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

body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    line-height: 1.6;
    background: #1e1e1e; /* Dark background */
    color: #dcdcdc; /* Light text color */
}

/* Header & Navigation */
header {
    background: #252526; /* Slightly lighter dark background */
    border-bottom: 1px solid #444;
    padding: 1rem 2rem;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
}

.logo img {
    height: 140px;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #dcdcdc;
    font-weight: 500;
}

.nav-links a:hover,
.nav-links a.active {
    color: #569cd6; /* A bright blue accent */
}

/* Main Content */
main {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 4rem 0;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: #569cd6;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
}

.btn:hover {
    background: #4078a9;
}

/* About, Services, & Contact Sections */
section.about,
section.services,
section.contact {
    margin-bottom: 3rem;
}

section.about h1,
section.services h1,
section.contact h1 {
    margin-bottom: 1rem;
    font-size: 2rem;
    border-bottom: 2px solid #569cd6;
    display: inline-block;
    padding-bottom: 0.25rem;
}

.service-item {
    margin-bottom: 2rem;
}

.service-item h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Footer */
footer {
    text-align: center;
    padding: 1rem 0;
    background: #252526;
    border-top: 1px solid #444;
}
