/* General */
body {
  font-family: "Segoe UI", sans-serif;
  margin: 0;
  padding: 0;
  background: #f4f9f4;
  color: #333;
  line-height: 1.6;
}

/* Header */
header {
  text-align: center;
  padding: 40px 20px;
  background: #e8f5e9;
  border-bottom: 2px solid #c8e6c9;
}

header h1 {
  color: #2e7d32;
  font-size: 2.2rem;
  margin-bottom: 10px;
}

header p {
  color: #555;
  font-size: 1.1rem;
  max-width: 600px;
  margin: auto;
}

/* Main Container */
.contact-container {
  max-width: 900px;
  margin: 30px auto;
  padding: 20px;
}

/* Section Style */
.contact-container section {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  margin-bottom: 25px;
}

/* Section Titles */
.contact-container h2 {
  color: #388e3c;
  margin-bottom: 15px;
  border-left: 5px solid #4CAF50;
  padding-left: 10px;
}

/* Contact Form */
.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form label {
  margin: 10px 0 5px;
  font-weight: bold;
  color: #444;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  margin-bottom: 15px;
  font-size: 1rem;
  transition: border 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #4CAF50;
  outline: none;
}

/* Form Button */
.contact-form button {
  padding: 14px;
  background: #4CAF50;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #388e3c;
}

/* Contact Info */
.contact-info p {
  margin: 8px 0;
}

.contact-info a {
  color: #2e7d32;
  font-weight: 500;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

/* Volunteer, FAQ, Emergency */
.volunteer p,
.faq p,
.emergency p {
  margin: 10px 0;
}

.faq p {
  background: #f9fdf9;
  padding: 10px;
  border-radius: 8px;
}

.emergency-phone {
  font-size: 1.3rem;
  font-weight: bold;
  color: #d32f2f;
  margin: 10px 0;
}

/* Map */
.map iframe {
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}
