
body {
  font-family: 'Open Sans', sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  background-color: #fdfdfd;
  color: #0A2140;
}

header {
  background-color: #0A2140;
  color: white;
  padding: 0.5rem 1rem;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}

.navbar .logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
  text-decoration: none;
}

.menu-toggle {
  font-size: 1.5rem;
  background: none;
  border: none;
  color: white;
  display: none;
}

.navbar .nav-links {
  display: none;
  flex-direction: column;
  gap: 1rem;

}

.navbar .nav-links a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2rem;
  padding: 0.5rem 1rem;
}

.hero {
  text-align: center;
  padding: 2rem;
  background-color: #F4B400;
  color: #0A2140;
}

.hero-logo {
  max-width: 250px;
  margin-bottom: 1rem;
}

.issues-summary, .content {
  max-width: 800px;
  margin: 2rem auto;
  padding: 1rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  max-width: 700px;
  margin: 1rem auto;
  gap: 1rem;
}


.card {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 1rem;
}

.btn {
  display: inline-block;
  background-color: #0A2140;
  color: white;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 1rem;
}

footer {
  background-color: #0A2140;
  color: white;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}

footer a {
  color: white;
  text-decoration: none;
  margin: 0 0.5rem;
}

footer a:hover {
  text-decoration: underline;
}

.issue {
  margin-bottom: 2rem;
}

.issue h2 {
  color: #0A2140;
}

.logo img,
.logo-image {
  max-height: 100px;
  display: block;
}

.about-banner {
  width: 100%;
  height: auto;
  max-height: 550px;
  object-fit: cover;
}

.hero-split {
  display: flex;
  align-items: stretch;
  min-height: 60vh;
  background-color: #f1c40f;
  overflow: hidden;
}

.hero-text {
  flex: 1;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #f1c40f;
  min-width: 300px;
  box-sizing: border-box;
}

.hero-text h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  margin-bottom: 0.5rem;
  color: #1a2a4f;
  text-align: center;
  line-height: 1.2;
}

.hero-text p {
  font-size: 1.4rem;
  color: #333;
  text-align: center;
  margin-bottom: 1rem;
}

.hero-image-wrapper {
  flex: 1;
  background-color: #f1c40f;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 0; 
}

.hero-image-inner {
  width: 90%; /* Show 10% yellow margin */
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.angled-image {
  height: 100%;
  width: auto;
  object-fit: cover;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 15% 100%);
}

@media (min-width: 769px) {
  .navbar .nav-links {
    display: flex;
    flex-direction: row;
  }

  .menu-toggle {
    display: none;
  }
}


@media (max-width: 768px) {
  .hero-split {
    flex-direction: column;
    min-height: auto;
  }

  .hero-text {
    width: 100%;
    order: 2;
	padding: 0.5rem;
  }

  .hero-text p {
	margin-bottom: 0.75rem;
	font-size: 1.1rem;
  }
  
  .hero-image-wrapper {
    width: 100%;
    order: 1; 
  }

  .angled-image {
    width: 100%;
    height: 60vh;
    clip-path: none;
	object-position: 35% 15%;
  }

  .issues-summary {
	margin-top: 0.5rem;
  }
  
  .menu-toggle {
    display: block;
	z-index: 1100;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #1a2a4f;
    position: absolute;
    top: 75px;
    right: 1rem;
    width: 200px;
    padding: 1rem;
    border-radius: 5px;
	z-index: 1000;
  }

  .nav-links.show {
    display: flex;
  }
}