
  Body{
    background-color: rgb(236, 204, 204);
  }
   .input[type=text], select, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  resize: vertical;
}

label {
  padding: 13px 12px 12px 0;
  display: inline-block;
}

input[type=submit] {
  background-color: #f4becd;
  color: rgb(23, 3, 3);
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  float: right;
}

input[type=submit]:hover {
  background-color: #45a049;
}

.container {
  border-radius: 5px;
  background-color: #141414;
  padding: 20px;
  color: white;
}

.col-25 {
  float: left;
  width: 25%;
  margin-top: 6px;
}

.col-75 {
  float: left;
  width: 75%;
  margin-top: 6px;
}


.row:after {
  content: "";
  display: table;
  clear: both;
}

.home-btn{
  padding-right: 30px;
 text-align: center;
  padding-top: 10px;
   padding-left: 30px;
  padding-bottom: 10px;
  background-color: hsl(0, 43%, 83%);
  border-radius: 10%;
}
.home-btn:hover{
 background: #1ebe5b;
}

.contact-section {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
}

.contact-section h1 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #020b05;
}

.contact-section p {
  font-size: 16px;
  margin-bottom: 40px;
  color: #333;
}

/* Contact Info Boxes */
.contact-info {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 40px;
}

.info-item {
  background: hsl(0, 3%, 94%);
  padding: 20px;
  border-radius: 12px;
  min-width: 220px;
  flex: 1;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.info-item h3 {
  margin-bottom: 10px;
  color: #161817;
}

.info-item p {
  font-size: 15px;
  color: #555;
}

/* Map Container */
.map-container {
  width: 100%;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.whatsapp-btn {
  display: inline-block;
  background: #25D366;
  color: white;
  padding: 10px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s ease;
}

.whatsapp-btn:hover {
  background: #1ebe5b;
}
.submit-btn{
  padding: 14px 25px;
  background-color: #d9a6b1;
  color: white;
  font-size: 18px;
  font-weight: bold;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s ease;
  width: 220px;
}

.submit-btn:hover {
  background-color: #204a33;
  transform: scale(1.03);
}

 iframe{
         width:90%; 
          height:600px;
          border:0;
        
}
/* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */

@media screen and (max-width: 600px) {
  .col-25, .col-75, input[type=submit] {
    width: 100%;
    margin-top: 0;
  }
}
