body {
  font-family: Arial, sans-serif;
  background-color: #fffbea;
  color: #2e2e2e;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

/* === Sidebar === */
.sidebar {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 2000;
  top: 0;
  left: 0;
  background-color: #2d5c47;
  overflow-x: hidden;
  transition: 0.3s ease;
  padding-top: 60px;
}
.sidebar a {
  padding: 12px 24px;
  text-decoration: none;
  font-size: 1.2em;
  color: white;
  display: block;
  transition: 0.2s;
}
.sidebar a:hover {
  background-color: #3e7a64;
}
.sidebar .closebtn {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 2em;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

/* === Menu Button === */
.menu-button {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 2100;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.menu-button img {
  width: 50px;
  height: auto;
  transition: transform 0.3s ease;
}
.rotate {
  transform: rotate(180deg);
}

/* === Header and Image === */
header {
  text-align: center;
  padding: 20px;
}
.hero-container {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: auto;
}
.hero-image {
  width: 100%;
  height: auto;
  display: block;
  z-index: 1;
}

/* === Responsive Overlaid Text on Image === */
.hero-text-wrapper {
  position: absolute;
  top: 20px;
  left: 0;
  width: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero-text {
  font-family: Arial, sans-serif;
  font-weight: bold;
  font-size: clamp(2rem, 8vw, 5rem);
  line-height: 1.2;
  width: 100%;
  color: white;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  padding: 0 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  box-sizing: border-box;
}

.hero-text-left {
  text-align: left;
}

.hero-text-right {
  text-align: right;
  margin-top: 0.5em;
}

/* === Responsive Font for Small Devices === */
@media (max-width: 768px) {
  .hero-text {
    font-size: clamp(18px, 8vw, 48px);
  }
}

/* === Buttons === */
.btn-sign {
  display: inline-block;
  background-color: #f7b32b;
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 5px;
  font-size: 1.3em;
  cursor: pointer;
  margin-top: -20px;
  margin-bottom: 20px;
  text-decoration: none;
  z-index: 2;
}

/* === Sections === */
section {
  padding: 20px;
  max-width: 900px;
  margin: auto;
}
.section-title {
  font-weight: bold;
  font-size: 1.5em;
  margin-bottom: 10px;
}
.issue-summary {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
}
.issue-text {
  flex: 2;
}
.stat-box {
  flex: 1;
  background-color: #f5f5f5;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
}
.stat-box img {
  width: 50px;
}
.solutions {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}
.solution-item {
  flex: 1;
  background-color: #e6f2ea;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  min-width: 150px;
}
.solution-item img {
  width: 40px;
  margin-bottom: 10px;
  transform-origin: center;
  transition: 0.3s ease;
}

.solution-item img:hover {
  width: 50px;
  margin-bottom: 0px;
  transform-origin: center;
  transition: 0.3s ease;
}

/* === Petition Form === */
.petition-form {
  margin-top: 30px;
  background-color: #f0f0f0;
  padding: 20px;
  border-radius: 10px;
}
.petition-form input,
.petition-form textarea {
  width: 100%;
  padding: 10px;
  margin: 8px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.petition-form .form-row {
  display: flex;
  gap: 10px;
}
.petition-form .form-row > div {
  flex: 1;
}
.petition-form button {
  background-color: #2d5c47;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-size: 1em;
  cursor: pointer;
}

/* === Social Icons === */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}
.social-icons a {
  color: #2e2e2e;
  font-size: 1.5em;
  text-decoration: none;
}

.social-icons a img:hover {
  transform: scale(1.1);
}

/* === Progress Bar === */
.progress-bar {
  background-color: #dcdcdc;
  height: 8px;
  border-radius: 4px;
  margin: 20px 0;
}
.progress-bar-fill {
  background-color: #2d5c47;
  height: 100%;
  width: 60%;
  border-radius: 4px;
}

/* === Footer === */
footer {
  padding: 20px;
  background-color: #fafafa;
  text-align: center;
  font-size: 0.9em;
  border-top: 1px solid #ddd;
}
footer a {
  color: #2d5c47;
  text-decoration: none;
}

/* === Misc === */
.inline-logo {
  vertical-align: middle;
  height: 1em;
  width: auto;
  margin-left: 0.3em;
  display: inline-block;
}
.jumbotron {
  background-color: #eee;
  padding: 40px 30px;
  border-radius: 12px;
  margin: 30px auto;
  max-width: 900px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  color: white;
}
.jumbotron h2 {
  margin-top: 0;
  font-size: 2em;
  color: #2d5c47;
}
.jumbotron p {
  font-size: 1.2em;
  color: #135;
}
.h_rule {
  background-color: #777;
  height: 2px;
  width: 90vw;
  color: #444;
}
.h_rule-small {
  width: 70vw;
  color: #abc;
}
