/* Reset default browser styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Apply styles to the body */
  body {
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
  }
  body {
    background-image: url("11.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  
  /* Apply styles to headings */
  h1, h2, h3 {
    margin-bottom: 1rem;
  }
  
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  /* Apply styles to links */
  a {
    color: #333;
    text-decoration: none;
  }
  
  a:hover {
    text-decoration: underline;
  }
  
  /* Apply styles to container */
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  
  /* Apply styles to header */
  header {
    background-color: #f8f8f8;
    padding: 1rem 0;
    border-bottom: 1px solid #ccc;
  }
  
  header h1 {
    font-weight: bold;
  }
  
  header nav ul {
    list-style: none;
  }
  
  header nav li {
    display: inline-block;
    margin-right: 1rem;
  }
  
  /* Apply styles to hero section */
  .hero {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 4rem 0;
  }
  
  .hero h2 {
    font-size: 2.5rem;
  }
  
  /* Apply styles to content section */
  .content {
    padding: 4rem 0;
  }
  
  .content h3 {
    margin-bottom: 2rem;
    color: #080808;

  }
  
  .content p {
    margin-bottom: 2rem;
    color: #080808;

  }
  
  .contact h3 {
    margin-bottom: 1rem;
  }
  
  .contact p {
    margin-bottom: 2rem;
  }
  
  .feedback h3 {
    margin-bottom: 1rem;
  }
  
  .feedback form {
    display: flex;
    flex-direction: column;
  }
  
  .feedback .form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
  }
  
  .feedback .form-group label {
    margin-bottom: 0.5rem;
    color: #080808;

  }
  
  .feedback input[type="text"],
  .feedback input[type="email"],
  .feedback textarea {
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 0.25rem;
  }
  
  .feedback button[type="submit"] {
    background-color: #333;
    color: #fff;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 0.25rem;
    cursor: pointer;
  }
  
  .feedback button[type="submit"]:hover {
    background-color: #222;
  }
  