/* Base styling */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: white;
  color: #2f7865;
  line-height: 1.6;
}

/* Header */
header {
  background-color: #074131;
  color: white;
  padding: 20px 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  flex-wrap: wrap;
}

.logo {
  height: 60px;
  margin-right: 15px;
}

.site-title {
  font-size: 24px;
  font-weight: bold;
  text-transform: uppercase;
}

/* Navigation */
.nav-menu ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: #FFD700;
  text-decoration: underline;
}

/* Burger menu */
#menu-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
}

.burger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: white;
  background: none;
  border: none;
  padding: 0;
}

@media screen and (max-width:768px) {
  .burger {
    display: block;
  }
  .nav-menu ul {
    display: none;
    flex-direction: column;
    gap: 10px;
    background-color: #2f7865;
    padding: 10px;
    border-radius: 8px;
  }
  #menu-toggle:checked + .burger + ul {
    display: flex;
  }
}

/* Hero */
.hero {
  text-align: center;
  padding: 40px 20px;
}

.hero h2 {
  font-size: 32px;
  color: #2f7865;
}

.hero p {
  font-size: 18px;
  color: #245c4f;
}

/* Contact Form */
.contact-form {
  max-width: 600px;
  margin: 0 auto 40px auto;
  padding: 20px;
  background-color: #f9f9f9;
  border: 2px solid #2f7865;
  border-radius: 8px;
}

.contact-form h3 {
  text-align: center;
  margin-bottom: 20px;
  color: #245c4f;
}

.contact-form label {
  display: block;
  margin: 10px 0 5px;
  font-weight: bold;
  color: #2f7865;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #2f7865;
  border-radius: 6px;
  margin-bottom: 15px;
}

.contact-form button {
  background-color: #2f7865;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #245c4f;
}

/* Highlight Images */
.highlight-images {
  margin: 40px 0;
  text-align: center;
}

.highlight-images h2 {
  margin-bottom: 20px;
  color: #245c4f;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card {
  background: #fff;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(31, 109, 187, 0.4);
  text-align: center;
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
  border: 2px solid #2f7865;
  display: block;
}

.card h3 {
  margin-top: 10px;
  font-size: 18px;
  font-weight: bold;
  color: #2f7865;
}

.card p {
  font-size: 14px;
  color: #2f7865;
  margin: 10px 0;
}
.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
  border: 2px solid #2f7865;
  display: block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 12px rgba(47, 120, 101, 0.5);
  cursor: pointer;
}


.read-more {
  display: inline-block;
  margin-top: 8px;
  color: #2f7865;
  font-weight: bold;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.read-more:hover {
  color: #FFD700;
  border-color: #FFD700;
}

/* Responsive grid */
@media (max-width: 900px) {
  .image-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .image-grid { grid-template-columns: 1fr; }
}

/* FAQ Section */
.faq-section {
  margin: 40px auto;
  max-width: 800px;   /* keeps FAQ centered and not too wide */
  padding: 0 20px;
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #245c4f;
}

.faq-item {
  margin-bottom: 20px;
  padding: 15px;
  border: 1px solid #2f7865;
  border-radius: 6px;
  background-color: #f9f9f9;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item h3 {
  margin-bottom: 8px;
  color: #2f7865;
}

.faq-item p {
  margin: 0;
  color: #245c4f;
}

/* Hover effect for FAQ boxes */
.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(47, 120, 101, 0.3);
}


/* Footer */
footer {
  background-color: #074131;
  color: white;
  padding: 20px 40px;
  text-align: center;
}

.footer-contact p {
  margin: 6px 0;
}

.back-to-top {
  text-decoration: none;
  color: white;
  font-weight: bold;
  font-size: 14px;
}

.back-to-top:hover {
  color: #FFD700;
  text-decoration: underline;
}
