body {
    margin: 10px;
    font-family: 'Roboto', Arial, sans-serif;
  }
  
  .navbar {
    position: sticky;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #333;
    color: white;
    padding: 0.5rem 1rem;
    z-index: 1000;
  }
  
  .logo {
    font-size: 1.5rem;
    font-weight: bold;
  }
  
  .nav-links {
    display: flex; /* Ensure the nav menu is visible by default */
    flex-direction: row;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .nav-links li {
    margin: 0 1rem;
  }
  
  .nav-links a {
    text-decoration: none;
    color: white;
    transition: color 0.3s;
  }
  
  .nav-links a:hover {
    color: #ffcc00;
  }
  
  .hamburger {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
  }
  
  @media (max-width: 768px) {
    .nav-links {
      display: none; /* Hide the nav menu on smaller screens */
      flex-direction: column;
      width: 100%;
      background-color: #333;
      position: absolute;
      top: 100%;
      left: 0;
      padding: 0.5rem 0;
    }
  
    .nav-links.active {
      display: flex; /* Show the nav menu when active */
    }
  
    .hamburger {
      display: block;
    }
  }

.hero {
  position: relative;
  width: 100%;
  height: 60vh;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 1rem;
}

.hero-overlay h1 {
  font-size: 2.5rem;
  margin: 0;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.507), 
               0 0 10px rgba(255, 255, 255, 0.39), 
               0 0 20px rgba(255, 255, 255, 0.267);
}

.hero-overlay p {
  font-size: 1.2rem;
  margin: 0.5rem 0 0;
}

.why-matters {
  padding: 2rem;
  background-color: #f9f9f9;
  text-align: center;
}

.why-matters h1 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 1rem;
}

.why-matters p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin: 0 auto;
  max-width: 800px;
}

@media (max-width: 768px) {
  .why-matters h1 {
    font-size: 1.5rem; /* Adjust font size for smaller screens */
  }

  .why-matters h3 {
    font-size: 1.2rem; /* Add responsive font size for h3 */
  }
}

.articles {
  padding: 2rem;
  background-color: #fff;
  text-align: center;
}

.articles h1 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 1.5rem;
}

.article-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  padding: 0;
}

.article-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 1rem;
  transition: transform 0.3s, box-shadow 0.3s;
}

.article-card h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #333;
}
 
.article-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.article-card p {
  font-size: 1rem;
  color: #555;
}

.article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.article-content {
  padding: 2rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.article-content h1 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 1rem;
}

.article-content p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.archives {
  padding: 2rem;
  background-color: #fff;
  text-align: center;
}

.archives h1 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 1.5rem;
}

.archive-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.archive-list.two-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.archive-item {
  position: relative;
  border: 1px solid #ddd;
  padding: 15px;
  border-radius: 5px;
  background-color: #f9f9f9;
}

.archive-item a {
  display: block;
  text-decoration: none;
  color: #333;
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 1rem;
  transition: transform 0.3s, box-shadow 0.3s;
}

.archive-item a:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.archive-item .preview {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 0.5rem;
  font-size: 0.9rem;
  color: #555;
  z-index: 10;
}

.archive-item a:hover .preview {
  display: block;
}

.coming-soon-message {
  background-color: rgba(41, 37, 37, 0.85);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  top: -300px;
  font-family: 'Roboto', sans-serif;
}

.coming-soon-message h1 {
  color: black;
  font-size: 2em;
  margin-bottom: 0.5em;
}

.coming-soon-message p {
  font-size: 1.1em;
  line-height: 1.6;
}


@media (max-width: 768px) {
  .archive-item .preview {
    display: none; /* Disable hover preview on smaller screens */
  }

  .archive-list.two-columns {
    grid-template-columns: 1fr;
  }
}

.contact-form {
    max-width: 600px;
    margin: 2rem auto;
    padding: 1rem;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.contact-form button {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.contact-form button:hover {
    background-color: #0056b3;
}

fieldset {
    margin-bottom: 20px;
    border: 2px dashed #ccc; /* Dashed border to indicate informational form */
    padding: 15px;
    border-radius: 8px;
}

button[disabled] {
    background-color: #ccc;
    cursor: not-allowed;
}

p a {
    color: #007BFF;
    text-decoration: underline;
}

p a:hover {
    color: #0056b3;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-button {
  background-color: #f9f9f9;
  border: 1px solid #ccc;
  padding: 10px;
  cursor: pointer;
  font-size: 1rem;
  border-radius: 4px;
  transition: background-color 0.3s;
}

.dropdown-button:hover {
  background-color: #e6e6e6;
}

.dropdown-menu {
  display: none;
  position: absolute;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  list-style: none;
  padding: 0;
  margin: 0;
  z-index: 1;
  min-width: 200px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.dropdown-menu li {
  padding: 8px 12px;
}

.dropdown-menu li a {
  text-decoration: none;
  color: #333;
  display: block;
  transition: background-color 0.3s;
}

.dropdown-menu li a:hover {
  background-color: #f2f2f2;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.footer-spacing {
  padding-top: 100px;
  height: 225px
}

  .coming-soon-message {
    padding: 1.5rem;
    top: -200px;
    font-size: 0.95em;
    width: 90%;
  }

  .coming-soon-message h1 {
    font-size: 1.5em;
  }

  .coming-soon-message p {
    font-size: 1em;
  }

.article-cards-grid {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  margin: 32px 0;
}

.article-card {
  flex: 1 1 300px;
  max-width: 350px;
  min-width: 260px;
  box-sizing: border-box;
}

/* Responsive: stack cards on small screens */
@media (max-width: 900px) {
  .article-cards-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .article-card {
    max-width: 100%;
    min-width: 0;
  }
}
