* {
    padding:0%;
    margin: 0%;

}
.wrapper {
    
    background: #FFC1CC;
    background-size: cover;
    height:191vh;
  

}
.navbar {
  position: absolute; /* Position the navbar absolutely */
  top: 0;
  right: 0;
  padding: 20px;
}

.navbar ul {
  list-style: none;
  display: flex; /* Display items in a row */
  gap: 20px; /* Space between links */
}


.navbar ul li a {
  text-decoration: none;
  color: #cb304d;
  font-weight: bold;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.intro {
  text-align: center;
  padding: 100px 20px;
  background-color: #fdfdfd;
}

.intro h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #333;
}

.intro p {
  font-size: 1.2rem;
  color: #555;
  max-width: 600px;
  margin: 10px auto;
}

.btn {
  display: inline-block;
  margin-top: 25px;
  padding: 10px 20px;
  background-color: #ff6b81;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn:hover {
  background-color: #ff4757;
}

.about h1 {
    font-size: 3rem;
  margin-bottom: 20px;
  color: #333;
}
.about p {
    font-size: 1.2rem;
  color: #555;
  max-width: 600px;
  margin: 10px auto;
}
.about {
    
    text-align: center;
  padding: 100px 20px;
  background-color: #f2bbbb;
  height: fit-content;
}

section {
  padding: 40px 20px;
  max-width: 800px;
  margin: auto;
  font-family: 'Segoe UI', sans-serif;
}

h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 15px;
  border-bottom: 2px solid #ff6b81;
  display: inline-block;
}

p, ul {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

ul {
  list-style-type: disc;
  margin-left: 20px;
}
#contact {
  max-width: 700px;
  margin: auto;
  padding: 40px 20px;
  background-color: #fefefe;
  font-family: 'Segoe UI', sans-serif;
}

#contact h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 10px;
  border-bottom: 2px solid #ff6b81;
  display: inline-block;
}

#contact p {
  margin-bottom: 25px;
  color: #555;
  font-size: 1rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form label {
  font-weight: bold;
  color: #444;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
}

.contact-form button {
  padding: 12px;
  background-color: #ff6b81;
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background-color: #ff4757;
}
