* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* font-family: 'Inter', sans-serif; */
}

body {
  background-color: #fff;
  color: #222;
  overflow-x: hidden;
}

 
/* Side Images (Left & Right) */
.side-images {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 30px 5%;
}
/* side-images-left, .side-images-right */
.side-images-left,
.side-images-right {
  /* display: flex; */
  flex-direction: column;
  gap: 15px;
}

.side-images-left img,
.side-images-right img {
  width: 90px;
  height: 70px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 30px 20px;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
}

.hero h1 span {
  color: #084d4d;
}

.hero p {
  font-size: 1rem;
  color: #555;
  margin-top: 10px;
}

/* Hero bottom SVGs */
.hero-bottom {
  position: relative;
  margin-top: 50px;
}

.hero-bottom img {
  position: absolute;
  width: 250px;
}

.hero-bottom .hero-left {
  left: 0;
  bottom: 0;
  margin-top: 40px;
}

.hero-bottom .hero-right {
  right: 0;
  bottom: 0;
  margin-top: 160px;
}

/* Activities Section */
.activities {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px 5%;
  max-width: 700px;
  margin: auto;
}

.activity-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  padding: 15px;
}

.activity-card .thumb img {
  border-radius: 8px;
  width: 100px;
  height: 70px;
  object-fit: cover;
}

.activity-card .info {
  flex: 1;
  margin-left: 15px;
}

.activity-card .info h4 {
  font-size: 14px;
  color: #666;
}

.activity-card .info p {
  font-size: 15px;
  font-weight: 600;
  margin: 3px 0;
}

.activity-card .info small {
  color: #777;
}

.status {
  font-weight: 600;
  font-size: 14px;
}

.added-status {
  color: #22bb33;
}

.adding-status {
  color: #ff7300;
}

/* Footer */
/* .footer {
  text-align: center;
  padding: 40px 10px;
  color: #777;
  font-size: 13px;
} */

/* Responsive */
@media (max-width: 992px) {
  .side-images {
    padding: 20px;
  }

  .side-images-left img,
  .side-images-right img {
    width: 70px;
    height: 60px;
  }

  .hero h1 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .side-images {
    flex-direction: row;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 10px;
  }

  .side-images-left,
  .side-images-right {
    flex-direction: row;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero-bottom img {
    width: 180px;
  }
}

@media (max-width: 480px) {
  .side-images-left img,
  .side-images-right img {
    width: 60px;
    height: 50px;
  }

  .hero h1 {
    font-size: 1.5rem;
  }
}
