


body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
}



.hero {
  background-color:rgba(252,237,234,255); /* Soft pink similar to the image */
  height: 300px; /* approximate height to match image look */
  padding-top: 40px;
  text-align: center;
  position: relative;
}



.nav-container {
  max-width: 1100px;
  margin: 0 auto;
  background: white;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}


.corner-image {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 350px; /* adjust as needed */
  height: auto;
}

.corner1-image {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 350px; /* adjust as needed */
  height: auto;
}


.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 30px;
  height: 30px;
}

.logo span {
  font-size: 24px;
  font-weight: bold;
}

.nav-links {
  display: flex;
  gap: 25px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-size: 16px;
  transition: color 0.3s;
}

.nav-links a:hover,
.nav-links .active {
  color: #e59ca3;
}

.nav-icon img {
  width: 25px;
  height: 25px;
}

.hero-title {
  margin-top: 60px;
  font-size: 36px;
  color: #333;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    gap: 10px;
    border-radius: 30px;
    padding: 20px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .hero-title {
    font-size: 28px;
  }



  

  



}




    body {
      margin: 0;
      font-family: 'Segoe UI', sans-serif;
      background-color: #fff8f6;
    }

    .contact-section {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      padding: 40px 20px;
    }

    .contact-info, .contact-form {
      background: white;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 0 10px rgba(0,0,0,0.05);
      flex: 1 1 350px;
      margin: 10px;
      max-width: 500px;
    }

    .contact-info h2,
    .contact-form h2 {
      font-weight: 400;
      margin-bottom: 20px;
    }

    .info-block {
      margin-bottom: 20px;
    }

    .info-block h4 {
      margin: 0 0 5px;
      font-weight: 500;
    }

    .info-block p {
      margin: 2px 0;
      color: #555;
    }

    .contact-form form {
      display: flex;
      flex-direction: column;
    }

    .contact-form input,
    .contact-form textarea {
      margin-bottom: 15px;
      padding: 15px;
      border: 1px solid #fddede;
      border-radius: 30px;
      font-size: 14px;
      resize: none;
    }

    .contact-form textarea {
      height: 120px;
      border-radius: 20px;
    }

    .contact-form button {
      background-color: #f9a9a9;
      border: none;
      padding: 12px 25px;
      color: white;
      font-weight: bold;
      border-radius: 25px;
      cursor: pointer;
      align-self: flex-start;
      transition: background 0.3s;
    }

    .contact-form button:hover {
      background-color: #f48c8c;
    }

    @media (max-width: 768px) {
      .contact-section {
        flex-direction: column;
        align-items: stretch;
      }

      .contact-form button {
        width: 100%;
        text-align: center;
      }
    }



  
