.body{
    height: 100%;
    width: 75%;
    position: relative;
    left: 24%;
    top: 85px;
  
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

/* Header */
.header {
  text-align: center;
  margin-bottom: 40px;
}
.header h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}
.header p {
  color: #555;
  font-size: 1.1rem;
}

/* Grid Layout */
.grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
}



/* Cards */
.card, .address-card {
  background: #fff;
  border: 1px solid #eee;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover, .address-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.card-header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.card-header .icon {
  font-size: 1.5rem;
  margin-right: 8px;
}
.cyan { color: #06b6d4; }
.yellow { color: #eab308; }
.purple { color: #9333ea; }
.highlight {
  color: #06b6d4;
  font-weight: bold;
  margin: 8px 0;
}

/* Contact Form */
.contact-form {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  border: 1px solid #eee;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}
.contact-form h2 {
  margin-bottom: 20px;
  color: #06b6d4;
}
.contact-form form {
  display: flex;
  flex-direction: column;
}
.contact-form label {
  margin: 8px 0 4px;
  font-weight: bold;
  font-size: 0.9rem;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  transition: border 0.3s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #06b6d4;
  outline: none;
}
.contact-form button {
  margin-top: 15px;
  padding: 12px;
  background: #06b6d4;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}
.contact-form button:hover {
  background: #0891b2;
  transform: scale(1.02);
}

@media (max-width: 900px) {

    .body{
    height: 100%;
    width: 90%;
    position: relative;
    left: 5%;
    top: 55px;
  
}
  .grid {
    grid-template-columns: 1fr;
  }
}


@media (min-width: 766px) and (max-width: 1024px) {
    .body{
    height: 100%;
    width: 90%;
    position: relative;
    left: 5%;
    top: 55px;
  
}
  .grid {
    grid-template-columns: 1fr;
  }
}


