/* Reset some default styles */
body, h1, h2, p {
    margin: 0;
    padding: 0;
}

/* Define overall styles */
body {
    font-family: Arial, sans-serif;
}

/* Header styles */
header {
    background: #222; /* Dark background color */
    color: #fff; /* Text color */
    padding: 10px 0;
}

.logo {
    margin-left: 20px;
    font-size: 24px;
}

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

.menu {
    list-style: none;
}

.menu li {
    display: inline;
    margin: 0 15px;
}

.menu a {
    text-decoration: none;
    color: #fff;
}

/* Hero section styles */
#hero {
    background: url('hero-bg.jpg') center/cover no-repeat; /* Hero image background */
    color: #fff;
    text-align: center;
    padding: 100px 0;
}

.hero-content {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Add a white text shadow for outline */
}

.hero-content h1 {
    font-size: 36px;
}

.cta-button {
    background: #ff5722; /* CTA button color */
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
}

/* About section styles */
#about {
    background: #fff; /* White background */
    color: #222;
    padding: 50px;
}

/* Services section styles */
#services {
    background: #f0f0f0; /* Light gray background */
    color: #222;
    padding: 50px;
}

/* Contact section styles */
#contact {
    background: #222; /* Dark background color */
    color: #fff;
    padding: 50px;
    text-align: center;
}

/* Footer styles */
footer {
    background: #333; /* Slightly lighter dark background color */
    color: #fff;
    text-align: center;
    padding: 10px 0;
}

