/* Reset some default browser styles */
body, h1, h2, p, ul {
    margin: 0;
    padding: 0;
  }
  
  /* Global styles */
  body {
    font-family: Arial, sans-serif;
    line-height: 1.5;
    color: #333;
    background-color: #f5f5f5;
  }
  
  .container {
    max-width: 960px;
    margin: 0 auto;
    padding: 20px;
  }
  
  /* Navigation bar styles */
  nav {
    background-color: #f5f5f5;
    padding: 10px 0;
  }
  
  nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
  }
  
  nav ul li {
    display: inline-block;
    margin-right: 20px;
  }
  
  nav ul li:last-child {
    margin-right: 0;
  }
  
  nav ul li a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    font-weight: bold;
    transition: color 0.3s;
  }
  
  nav ul li a:hover {

    color: #c7bbb1; 

  }
  /* Section styles */
  section {
    margin-bottom: 40px;
    padding: 40px;
    background-color: #f5f5f5;
  }

  #about, #target{
    background-color: #c7bbb1;
  }
  
  section h1, section h2 {
    color: #333;
    margin-bottom: 10px;
  }
  
  section p {
    color: #666;
    margin-bottom: 20px;
  }
  
  /* Introduction section styles */
  section#introduction {
    text-align: center;
  }
  
  /* Responsive styles */
  @media only screen and (max-width: 768px) {
    nav ul li {
      display: block;
      margin-bottom: 10px;
    }
  
    section {
      padding: 20px;
    }
  }
  
  @media only screen and (max-width: 480px) {
    nav {
      padding: 10px;
    }
  
    nav ul li {
      margin-right: 10px;
    }
  
    section {
      padding: 10px;
    }
  }
  
  /* Footer styles */
  footer {
    background-color: #f5f5f5;
    color: #333;
    padding: 20px;
    text-align: center;
  }
  
  footer a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  footer a:hover {
    color: #c7bbb1;
  }
/* ...previous CSS code... */

/* Button styles */
.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #c7bbb1;
    color: #000000;
    text-decoration: none;
    font-size: 16px;
    border-radius: 4px;
    transition: background-color 0.3s;
  }
  
  .btn:hover {
    background-color: #ffffff;
    color:#ffffff;
  }
  
  .btn.btn-primary {
    background-color: #ece3db;
  }
  
  .btn.btn-primary:hover {
    background-color: #c7bbb1;
    color:#ffffff;

  }
  header img,
section img {
  display: block;
  margin: 0 auto;
  width:100%;
  height: 25%;
  margin-bottom: 20px;
}
.services-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.service-column {
  flex: 1;
  margin-right: 20px;
}

.service-column:last-child {
  margin-right: 0;
}

.service-column h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.service-column p {
  font-size: 14px;
  line-height: 1.5;
}
