/* RESET & FONTS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}

body {
  background-color: #000;
  color: #fff;
  line-height: 1.6;
}

/* HERO */
.hero {
  background: url('1753728168235.png') no-repeat center center/cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-position: center 0%;
}

.hero .overlay {
  background-color: rgba(0, 0, 0, 0);
  padding: 2rem;
  border-radius: 0px;
}

.hero-logo {
  max-width: 1200px;
  width: 100%;
  margin-top: -100px;
}


/* SERVICES */
.services {
  padding: 4rem 2rem;
  background-color: #111;
  text-align: center;
}

.services h2 {
  color: orange;
  margin-bottom: 1.5rem;
  font-size: 5rem;
  font-weight: 900;
}

.services ul {
  list-style: none;
  font-size: 3rem;
}

.services li {
  margin-bottom: 1rem;
}

/* INFO & WIDGETS */
.info-widgets {
  display: flex;
  flex-wrap: wrap;
  background-color: #111;
  padding: 4rem 2rem;
}

.left, .right {
  flex: 1;
  padding: 1rem;
}

.left img {
  width: 100%;
  border-radius: 10px;
}

.right h3 {
  color: orange;
  margin-bottom: 1rem;
}

.widget {
  background: #222;
  padding: 1rem;
  margin-bottom: 1rem;
  border-left: 4px solid orange;
}

/* ABOUT */
.about {
  background-color: #000;
  padding: 3rem 2rem;
  text-align: center;
  font-style: italic;
  font-size: 3rem;
}

/* FOOTER */
footer {
  background-color: #111;
  padding: 1.5rem;
  text-align: center;
  font-size: 0.9rem;
  color: #aaa;
}
* 
.info-widgets-section {
  padding: 60px 20px;
  background-color: #111; /* Matches dark theme */
  color: #fff;
}

.container-split {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

.left-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  object-fit: cover;
}

.right-info {
  flex: 1;
  min-width: 300px;
}

.right-info h2 {
  font-size: 32px;
  margin-bottom: 20px;
  border-bottom: 2px solid #555;
  padding-bottom: 10px;
}

.right-info p {
  font-size: 18px;
  margin: 10px 0;
}

.right-info a {
  color: #90ee90;
  text-decoration: none;
}

.qr-code {
  width: 120px;
  margin-top: 10px;
}

.widget.brown-bin {
  background: #222;
  padding: 20px;
  border: 1px solid #333;
  margin-top: 40px;
  border-radius: 8px;
}

.widget.brown-bin h3 {
  margin: 0 0 10px;
  font-size: 22px;
  color: #d2b48c; /* Brown tone */
}

.bin-date {
  font-weight: bold;
  color: #90ee90;
}
