/* Resetting default browser styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Raleway;
    line-height: 1.6;
    background-color: #bdbdbd;
    color: #333;
}

.container {
    width: 80%;
    margin: auto;
    padding: 20px;
}

header {
    background-color: #333;
    color: #fff;
    padding: 10px 0;
}

header nav ul {
    list-style: none;
}

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

header nav ul li a {
    color: #fff;
    text-decoration: none;
}

#hero {
    background-image: url('hero-bg.png'); /* Replace 'hero-bg.jpg' with your actual background image */
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 100px 0;
}

#hero h2 {
    font-size: 3em;
    margin-bottom: 20px;
}

#about, #services, #contact {
    padding: 50px 0;
}

section h2 {
    text-align: center;
    margin-bottom: 30px;
}

section p {
    text-align: center;
    margin-bottom: 20px;
}

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

footer p {
    margin: 0;
}


.logo {
  text-align: center;
}

.logo img {
  width: 100px; /* Adjust the size as needed */
  height: auto;
  margin-bottom: 10px;
}

.logo h1 {
  font-size: 24px;
  font-weight: bold;
  color: #333; /* Adjust the color as needed */
}

