* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #000;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
}

/* HEADER */
.header {
 background: #050505;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo img {
  height: 80px;
  max-width: 100%;
}


/* GREEN LINE */
.green-line {
  height: 3px;
  background: linear-gradient(90deg, transparent, #00ff66, transparent);
  box-shadow: 0 0 12px #00ff66;
}

/* INTRO */
.intro {
  padding: 30px 20px;
  text-align: center;
}

.intro h1 {
  margin-bottom: 10px;
}

.intro p {
  color: #ccc;
}

/* OFFER LIST */
.offer-list {
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* OFFER CARD */
.offer-card {
  display: flex;
  background: #0b0b0b;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.35);
}

/* ICON AREA */
.offer-icon {
  width: 220px;
  background: linear-gradient(135deg, #111, #000);
  display: flex;
  align-items: center;
  justify-content: center;
}

.offer-icon img {
  width: 160px;
  height: 160px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(255, 215, 0, 0.5));
}

/* CONTENT */
.offer-content {
  padding: 25px;
  flex: 1;
}

.offer-content h2 {
  margin-top: 0;
  color: #ffd700;
  font-size: 24px;
}

.offer-content ul {
  padding-left: 20px;
  margin: 15px 0;
}

.offer-content ul li {
  margin-bottom: 8px;
  color: #e6e6e6;
}

/* BUTTON */
.offer-btn {
  display: inline-block;
  margin-top: 15px;
  background: linear-gradient(135deg, #ffd700, #ffb700);
  color: #000;
  padding: 12px 22px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
}

/* FOOTER */
.footer {
  margin-top: 40px;
  padding: 20px;
  text-align: center;
  background: #050505;
  color: #777;
  font-size: 14px;
}

/* MOBILE */
@media (max-width: 768px) {
  .offer-card {
    flex-direction: column;
    text-align: center;
  }

  .offer-icon {
    width: 100%;
    padding: 20px;
  }

  .offer-content ul {
    text-align: left;
    display: inline-block;
  }
}

/* BLOG SECTION */
.blog-section {
  padding: 60px 20px;
  background: #000;
}

.blog-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

/* LEFT SIDE */
.blog-left {
  flex: 1;
}

.blog-left h2 {
  color: #00ff66;
  font-size: 28px;
  margin-bottom: 10px;
}

.blog-left h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.blog-left p {
  color: #cccccc;
  line-height: 1.7;
  font-size: 16px;
}

/* RIGHT SIDE */
.blog-right {
  flex: 1;
  background: #0b0b0b;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 0 25px rgba(0, 255, 102, 0.25);
}

.blog-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog-features li {
  padding-left: 28px;
  margin-bottom: 16px;
  position: relative;
  color: #ffffff;
  font-size: 16px;
}

/* CHECK ICON */
.blog-features li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #00ff66;
  font-weight: bold;
}

/* MOBILE */
@media (max-width: 768px) {
  .blog-container {
    flex-direction: column;
  }

  .blog-right {
    margin-top: 20px;
  }
}
