/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fafafa;
}

/* Header */
header {
  background-color: #f39c12;
  color: #fff;
  padding: 15px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  height: 50px;
}

nav ul {
  list-style: none;
  display: flex;
}

nav li {
  margin-left: 20px;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  color: #f39c12;
}

/* Layout */
.home-layout {
  display: flex;
  gap: 30px;
  padding: 40px;
}

.info {
  flex: 2;
}

.form-box {
  flex: 1;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0px 2px 6px rgba(0,0,0,0.1);
  position: sticky;
  top: 20px;
}

.form-box h2 {
  margin-bottom: 15px;
  color: #1a1a1a;
}

.form-box form {
  display: flex;
  flex-direction: column;
}

.form-box label {
  margin-top: 10px;
  font-weight: 600;
}

.form-box input,
.form-box textarea {
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.form-box button {
  margin-top: 15px;
  padding: 12px;
  background: #f39c12;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1em;
}

.form-box button:hover {
  background: #d35400;
}

/* Reviews */
.reviews {
  background: #fff;
  padding: 40px;
  text-align: center;
}

.review-item {
  display: inline-block;
  width: 250px;
  margin: 20px;
  vertical-align: top;
}

.review-item img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

.review-item blockquote {
  font-style: italic;
  margin: 15px 0;
  color: #555;
}

.reviewer {
  font-weight: bold;
  color: #1a1a1a;
}

/* Footer */
footer {
  background: #1a1a1a;
  color: #fff;
  text-align: center;
  padding: 15px;
  margin-top: 30px;
}

/* Mobile Friendly */
@media (max-width: 900px) {
  .home-layout {
    flex-direction: column;
  }

  .form-box {
    position: relative;
    top: 0;
    margin-top: 20px;
  }
}
