/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #f5f5f5;
  color: #333;
}

/* Header */
header {
  background-color: #ff6600;
  color: white;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

nav a {
  text-decoration: none;
  color: white;
  padding: 8px 12px;
  border-radius: 5px;
  transition: background 0.3s ease;
}

nav a:hover, nav a.active {
  background-color: #cc5200;
}

/* Home Page */
.home-section {
  text-align: center;
  padding: 40px 20px;
}

.home-image {
  width: 90%;
  max-width: 700px;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.home-text {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  font-size: 1.1rem;
}

/* Contact Page */
.contact-section {
  text-align: center;
  padding: 50px 20px;
}

.contact-section h2 {
  color: #ff6600;
  margin-bottom: 20px;
}

/* Form Section */
.form-section {
  max-width: 600px;
  margin: 50px auto;
  padding: 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.form-section h2 {
  text-align: center;
  color: #ff6600;
  margin-bottom: 20px;
}

.enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.enquiry-form input,
.enquiry-form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  width: 100%;
}

.enquiry-form button {
  background-color: #ff6600;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s ease;
}

.enquiry-form button:hover {
  background-color: #cc5200;
}

/* Footer */
footer {
  background-color: #222;
  color: white;
  text-align: center;
  padding: 15px;
  margin-top: 30px;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    text-align: center;
  }

  nav ul {
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }

  .home-image {
    width: 100%;
  }

  .contact-section div {
    flex-direction: column;
  }
}
