

main {
min-height: 400px;
  background-color: rgb(253,236,216);
  display: flex;
  justify-content: center;
  align-items: center;
margin-top: 30px;
gap: 100px;
padding-right: 2rem;
padding-left: 2rem;
}

.contact-container {
  background: #ffffff;
  padding: 40px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
margin-top: 25px;
}

.contact-container h1 {
  margin-bottom: 0px;
margin-top: 0px;
  color: #333;
}

.contact-container p {
  margin-bottom: 25px;
  color: #666;
  line-height: 1.5;
}

.email-box {
  font-size: 18px;
}

.email-box span {
  font-weight: bold;
  color: #333;
  margin-right: 6px;
}

.email-box a {
  color: #0077cc;
  text-decoration: none;
}

.email-box a:hover {
  text-decoration: underline;
}
.logo {
  width: 400px;              /* Adjust size as needed */
 
  overflow: hidden;
  
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;          /* Prevent distortion */
  display: block;
  border-radius: 16px;        /* Ensures image corners match */
}

@media (max-width: 768px) {
  main {
    flex-direction: column;
    gap: 30px;
    padding: 1rem;
  }
  
  .logo {
    width: 200px;
    order: 2;
  }
  
  .contact-container {
    order: 1;
    width: 100%;
    max-width: 100%;
  }
}