/* General Styling */
body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  background: #FFF8E1; /* light cream */
  color: #333;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  background: #4CAF50; /* green */
  color: white;
}

.logo {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-weight: 500;
}

.nav-links a:hover,
.nav-links .active {
  border-bottom: 2px solid #FF9800; /* orange */
}

.btn {
  background: #FF9800;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  color: white !important;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.btn:hover {
  background: #e68900;
}

/* Contact Section */
.contact {
  text-align: center;
  padding: 3rem 10%;
}

.contact h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.contact p {
  margin-bottom: 2rem;
  color: #555;
}

/* Layout */
.contact-container {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Form Styling */
.contact-form {
  flex: 1;
  min-width: 300px;
  max-width: 450px;
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.contact-form label {
  display: block;
  margin: 0.5rem 0 0.2rem;
  font-weight: bold;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.8rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #4CAF50;
}

/* Info Box */
.contact-info {
  flex: 1;
  min-width: 250px;
  padding: 2rem;
  background: #f5f5f5;
  border-radius: 12px;
  text-align: left;
}

.contact-info h3 {
  font-family: 'Poppins', sans-serif;
  margin-top: 1rem;
  margin-bottom: 0.3rem;
  color: #4CAF50;
}

/* Footer */
footer {
  text-align: center;
  padding: 1rem;
  background: #4CAF50;
  color: white;
  margin-top: 2rem;
}
