/* General Styling */
body {
  font-family: 'Arial', sans-serif;
  color: #000000;
  background-color: #FFFFFF;
}

/* Header and Branding */
.site-title a {
  color: #F4A261 !important;
  font-weight: bold;
}

.site-logo img {
  max-width: 150px;
}

/* Hero Image (Aligned with site-header.html featured image) */
.featured, header.cover .featured {
  width: 100%;
  max-width: 1200px;
  height: 500px;
  object-fit: cover;
  margin: 0 auto 1rem;
  border-radius: 1rem !important; /* Stronger rounding */
  box-shadow: none;
  position: relative;
  z-index: 1;
}

/* Inline Images */
.post-content img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem !important; /* Stronger rounding */
  box-shadow: 0 5px 10px -2px rgba(0, 0, 0, 0.1);
}

/* About Us Section */
.post-content {
  text-align: center;
  padding: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.post-content h1 {
  color: #2E8B8B;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.post-content p {
  color: #000000;
  font-size: 1.2rem;
  line-height: 1.6;
}

/* Google Form Styling */
.google-form-container {
  max-width: 640px;
  margin: 2rem auto;
  border-radius: 1.5rem;
  box-shadow: 0 10px 15px -2px rgba(0, 0, 0, 0.1);
}

.google-form-container iframe {
  border: 1px solid #2E8B8B;
  border-radius: 1rem;
  width: 100%;
  min-height: 607px;
}

/* Footer */
footer {
  text-align: center;
  padding: 1rem;
  color: #000000;
  font-size: 0.9rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .post-content h1 {
    font-size: 2rem;
  }
  .post-content p {
    font-size: 1rem;
  }
  .site-logo img {
    max-width: 120px;
  }
  .featured {
    max-height: 300px;
  }
  .google-form-container iframe {
    min-height: 500px;
  }
}

/* Header Styling to Match site-header.html */
header.cover {
  background-size: cover;
  background-position: top;
}

header .bg-black-60 {
  background-color: rgba(0, 0, 0, 0.6);
}

header h1,
header h2 {
  color: #ffffff;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}


@media (max-width: 768px) {
  header .tc-l {
    text-align: center;
  }
  header .pv4 {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}