/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Georgia', serif;
  color: #111;
  background: #f5f5f5;
  line-height: 1.6;
  font-size: 1rem;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
header {
  background: #111;
  color: #fff;
  text-align: center;
  padding-top: 2rem;
}

.logo {
  max-width: 300px;
  height: auto;
  margin-bottom: 0.5rem;
}

.tagline {
  font-size: 1.2rem;
  font-style: italic;
  color: #aaa;
  margin-bottom: 1rem;
}

/* Sticky Navigation */
.sticky-nav {
  position: sticky;
  top: 0;
  background-color: #111;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.nav-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 1rem 0;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
  margin: 0;
}

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

.nav-menu a:hover {
  color: #ffb400;
}

/* Section Title */
.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}

/* Issues Section */
.issues {
  background: #fff;
  padding: 4rem 0;
}

.issue-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  padding: 0 1rem;
}

.issue-card {
  background: #fefefe;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  max-width: 340px;
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  transition: transform 0.3s;
  width: 100%;
  box-sizing: border-box;
}

.issue-card:hover {
  transform: translateY(-5px);
}

.issue-card img.cover-image {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.issue-text {
  text-align: center;
}

.issue-text h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.issue-text p {
  font-size: 0.95rem;
  margin-bottom: 1rem;
  color: #333;
  text-align: left;
  line-height: 1.5;
}

.button {
  background: #111;
  color: #fff;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  transition: background 0.3s, color 0.3s;
  display: inline-block;
  text-align: center;
}

.button:hover {
  background: #ffb400;
  color: #111;
}

/* About Section */
.about {
  padding: 4rem 0;
  background: #fff;
}

.about h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  text-align: center;
}

.about p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1rem;
  text-align: center;
  color: #444;
}

/* CTA Section */
.cta {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 3rem 1rem;
}

.cta h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.cta p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.cta .button {
  background: #ffb400;
  color: #111;
}

.cta .button:hover {
  background: #fff;
  color: #111;
}

/* Contact Section */
.contact {
  background: #fff;
  padding: 4rem 0;
  text-align: center;
}

.contact h2 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.contact p {
  margin-bottom: 2rem;
  color: #444;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
  padding: 0 1rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: 'Georgia', serif;
  background: #fdfdfd;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #111;
}

.contact-form .button {
  margin-top: 1rem;
}

/* Footer */
footer {
  background: #222;
  color: #aaa;
  text-align: center;
  padding: 2rem 1rem 3rem;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  body {
    font-size: 1.05rem;
  }

  .logo {
    max-width: 220px;
  }

  .nav-menu {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
    text-align: center;
  }

  .sticky-nav {
    padding-bottom: 0.5rem;
  }

  .issue-grid {
    flex-direction: column;
    align-items: center;
  }

  .issue-card {
    flex-direction: column;
    align-items: stretch;
    text-align: left;
    padding: 1rem;
    width: 100% !important;
    max-width: 100% !important;
    margin-bottom: 1.5rem;
  }

  .issue-card img.cover-image {
    display: block;
    width: 100% !important;
    height: auto !important;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 1rem;
  }

  .issue-text p {
    font-size: 1rem;
    text-align: left;
    line-height: 1.5;
  }

  .about h2,
  .cta h2,
  .contact h2,
  .section-title {
    font-size: 1.6rem;
  }

  .about p,
  .cta p,
  .contact p {
    padding: 0 1rem;
    font-size: 1rem;
  }

  .contact-form {
    padding: 0 1rem;
  }

  .form-group input,
  .form-group textarea {
    font-size: 1rem;
    padding: 0.75rem;
  }

  footer {
    padding-bottom: 3rem;
  }
}
