body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #5e405b;
}

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

header {
  background: #ff7752;
  color: white;
  text-align: center;
  padding: 15px;
  font-size: 1.5em;
}

nav {
  display: flex;
  justify-content: center;
  background: #ff9a52;
  padding: 10px;
}

nav a {
  color: white;
  text-decoration: none;
  margin: 0 15px;
  font-weight: bold;
}

main {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
}

.sidebar {
  flex: 1;
  min-width: 250px;
  padding: 10px;
}

.left {
  background: #ffb752;
}

.right {
  background: #ffb752;
}

.content {
  flex: 2;
  padding: 10px;
  background: #ffb752;
  min-height: 300px;
}

.box {
  background: white;
  padding: 15px;
  margin-bottom: 10px;
  border-radius: 5px;
  box-shadow: 0px 0px 5px rgba(0,0,0,0.1);
}
.box img {
  height: 70%;
  width: 70%;
  display: block;
  margin: 0 auto;
}
.box p{
  text-align: justify;
}
.box h2{
  text-align: center;
}

footer {
  background: #ff7752;
  color: white;
  text-align: center;
  padding: 10px;
  margin-top: 20px;
}
.services {
  text-align: center;
  padding: 50px 20px;
  background: #f4f4f4;
}
.service-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;  
  align-items: center;  
  gap: 20px;
}

.service {
  background: white;
  padding: 20px;
  width: 100%; 
  max-width: 300px; 
  border-radius: 8px;
  box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
  text-align: center; 
}
.service h3 {
  color: #ff7752;
}
a{
  text-decoration: none;
  color: #ff7752;
}

@media (max-width: 768px) {
  main {
      flex-direction: column;
  }
  .sidebar {
      min-width: 100%;
  }
  .service-container {
    flex-direction: column;
    align-items: center;
}
.service {
    width: 90%; 
    max-width: 320px;
}
}
