* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 3rem;
}

.logo {
  max-width: 300px;
}

.heading {
  text-align: center;
  margin-bottom: 3rem;
}

.desc-wrapper {
  margin-bottom: 3rem;
}

.desc {
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.8rem;
}

.main-images-wrapper {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4%;
  margin-bottom: 3rem;
}

.main-image {
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
  width: 100%;
}

.section-heading {
  text-align: center;
  margin-bottom: 1.5rem;
}

.conpany-details-container {
  margin-bottom: 3rem;
}

.conpany-details-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 1.2rem;
}

.contact-us-container {
  margin: 0 auto;
}

.contact-us-image {
  width: 50%;
}

.contact-us-form {
  width: 50%;
}

.section-heading {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 20px;
  color: #333;
}

.contact-us-content {
  display: flex;
  gap: 4%;
  align-items: center;
  margin-bottom: 3rem;
}

.contact-us-image img {
  max-width: 100%;
  border-radius: 8px;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  color: #555;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  color: #333;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #007bff;
  outline: none;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

.submit-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-button:hover {
  background-color: #0056b3;
}


.footer-section-container {
    background-color: black;

}

.footer-block {
    max-width: 1100px;
    padding: 1rem 0;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    color: white;
}


@media (max-width: 1100px) {
  .container, .footer-section-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .contact-us-content {
    flex-direction: column;
  }

  .contact-us-image,
  .contact-us-form {
    width: 100%;
  }

  .main-images-wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}


@media (max-width: 880px){
    .footer-block {
        font-size: 14px;
        gap: 2rem;
    }
    
}


@media (max-width: 680px) {
  .main-images-wrapper {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
