body {
  background-color: #F5DEB3;
  color: #000000;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

header {
  background-color: #8C2D0B;
  padding: 20px;
  text-align: center;
  color: #F5DEB3;
}

h1 {
  margin: 0;
}

.nav-bar {
  background-color: #B7410E;
  padding: 10px;
  text-align: center;
}

.nav-bar a {
  color: #F5DEB3;
  text-decoration: none;
  margin: 0 10px;
}

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

.about-me {
  display: flex;
  align-items: center;
}

.about-me img {
  width: 100%;
  height: auto;
  border-radius: 50%;
  margin-right: 20px;
}

.about-me h2 {
  font-size: 24px;
  margin: 0;
}

.coaching {
  display: flex;
  align-items: center;
}

.coaching img {
  width: 100%;
  height: auto;
  margin-right: 20px;
}

.coaching h2 {
  font-size: 24px;
  margin: 0;
}

.contact-box {
  border: 2px solid #000;
  padding: 10px;
}

h2 {
  text-align: center;
  font-size: 24px;
}

.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #B7410E;
  border-radius: 4px;
}

.submit-button {
  background-color: #B7410E;
  color: #F5DEB3;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
}
/* Additional styles for mobile devices */
@media (max-width: 1080px) {
  .container {
    display: flex;
    flex-direction: column;
  }

  .about-me {
    flex-direction: column-reverse;
  }

  .about-me img {
    margin-top: 20px;
    align-self: center;
    max-width: 80%;
    height: auto;
  }
  
  .coaching img {
    margin-top: 20px;
    align-self: center;
    max-width: 80%;
    height: auto;
  }
  .coaching {
    flex-direction: column-reverse;
  }

  .about-me h2 {
  font-size: 34px;
  margin: 0;
	}

	h2 {
  	text-align: center;
  	font-size: 34px;
	}
}


.menu-toggle {
  display: none;
}

@media (max-width: 1080px) {
  .nav-bar {
    display: none;
    flex-direction: column;
    align-items: center;
  }

  .nav-bar a {
    margin: 10px 0;
  }

  .menu-toggle {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #fff;
  }
}


.show-menu {
  display: block; /* Display the menu options when the show-menu class is applied */
}

@media (max-width: 1080px) {
  .menu-toggle:checked + .menu-icon {
    display: block;
  }

  .menu-toggle:checked ~ .nav-bar {
    display: block; /* Show the menu options when the menu toggle is checked */
    flex-direction: column;
    align-items: center;
  }

  .nav-bar a {
    display: block; /* Display as block-level elements */
  text-align: center;
  padding: 10px;
  text-decoration: none;
  color: #fff;
  background-color: #B7410E;
  margin: 5px 0; /* Add margin to create spacing between each navigation item */

  }

  .menu-icon {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
  }
}