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

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: rgb(240, 236, 230);
  font-size: 16px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header style */
header {
  background-color: #032f5e;
  color: #fff;
  padding: 20px 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

header h1 {
  font-size: 2em;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu-button {
  background-color: #01070e;
  color: #fff;
  border: none;
  padding: 10px 15px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
}

.menu-button:hover {
  background-color: #818386;
}

nav {
  display: none;
}

nav ul {
  list-style-type: none;
  overflow: hidden;
  position: relative;
  padding: 0 20px;
}

nav ul li {
  display: block;
  margin-bottom: 20px;
}

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

/* content styles */
main{
  padding: 20px;
  margin-top: 100px;
  min-height: 100%;
}

section {
  padding: 60px 0;
}

.hero-image {
  background-image:linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(./images/Olagoke\ \(edited\).jpg);
  height: 50%;
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.hero {
  color: #fff;
  text-align: center;
  padding: 100px 0;
}

.hero h2 {
  font-size: 3em;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2em;
  margin-bottom: 20px;
}

.hero .btn {
  background: #fff;
  color: #0073e6;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
}

.introduction {
  text-align: center;
}

.introduction img {
  max-width: 150px;
  border-radius: 50%;
  margin-top: 20px;
}

.services-overview {
  background-color: #a89e9e;
  padding: 40px 20px;
}

.services-overview .service {
  margin-bottom: 20px;
}

.services-overview .btn {
  display: inline-block;
  background: #0073e6;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 20px;
}

.why-choose-me {
  text-align: center;
}

.why-choose-me ul {
  list-style-type: none;
}

.why-choose-me ul li {
  font-size: 1.2em;
  margin-bottom: 10px;
}

.blog-highlights {
  background-color: #a89e9e;
  padding: 40px 20px;
}

.blog-highlights .blog-post {
  margin-bottom: 20px;
}

.blog-highlights .btn {
  display: inline-block;
  background: #0073e6;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
}

.featured {
  padding: 50px 0;
}

.featured h2 {
  font-size: 2em;
}

.dark-mode{
  color: white;
  background-color: #121212;
}

.dark-mode-btn{
  font-size:30px;
  padding: 5px;
  border-radius: 15px;
  border: 10px dou;
  position: fixed;
  right: 50px;
  bottom: 30px;
}

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

footer p {
  font-size: 0.8em;
}
