
body {
    font-family: sans-serif;
    margin: 0;
    background-color: #e7e7e7;
    color: #222;
}
header {
    background: #fff;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
nav a {
    margin-left: 1rem;
    text-decoration: none;
    color: #222;
}
.hero {
    text-align: center;
    padding: 2rem;
}
.hero img {
    max-width: 300px;
    margin-top: 1rem;
}
.plans, .testimonials, .contact {
    padding: 2rem;
    text-align: center;
}
.plan-card {
    background: white;
    display: inline-block;
    margin: 1rem;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
footer {
    background: #fff;
    text-align: center;
    padding: 1rem;
    margin-top: 2rem;
}

.contact {
  background: #f4f7fa;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  border-radius: 16px;

}

input {
  background: #ffffff;
  padding: 4px;
  max-width: 160px;
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0.5, 0.5);
}


message form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-radius: 8px;

}

message {
  padding: 14px 18px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  transition: all 0.3s ease;
  background: #fefefe;
}

textarea {
  border-color: #000000;
  outline: none;
  background: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0.5, 0.5);
  border-radius: 8px;

}

button {
  background: linear-gradient(to right, #909090, #a7a7a7);
  color: #fff;
  border: none;
  padding: 14px;
  font-size: 18px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.button:hover {
  background: linear-gradient(to right, #606060, #676767);
}

form-response {
  margin-top: 10px;
  font-size: 15px;
  color: #333;
  text-align: center;
  border-radius: 8px;
}
