* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #fff;
}

.container {
  display: flex;
  align-items: flex-start;
  padding: 20px;
  width: 90%;
  max-width: 1300px;
  margin: auto;
  gap: 20px;
}

.left-content {
  flex: 3;
  max-width: 70%;
}

.right-sidebar {
  flex: 1;
  max-width: 30%;
  position: sticky;
  top: 20px;
  background: #00a65136;
  padding: 15px;
  border: none;
  border-radius: 12px;
}

.update-bar {
  background: #00a651;
  border-left: 4px solid #ffc107;
  color: white;
  padding: 10px;
  margin-bottom: 20px;
}

h1 {
  font-size: 24px;
  margin-bottom: 20px;
}

.offer-box {
  /* background: white; */
  padding: 10px;
  /* border: 1px solid #ccc; */
}

.offer-box ul {
  list-style: none;
  margin: 10px 0;
}

.offer-box button {
  background-color: #00a651;
  color: white;
  padding: 10px;
  border: none;
  width: 100%;
  margin: 10px 0;
  cursor: pointer;
}

.offer-box img {
  width: 100%;
  margin-top: 10px;
}
.reason_div {
  display: flex;
  gap: 25px;
  margin-top: 7%;
}
.reason_img,
.reason_cont {
  width: 100%;
}
.reason_cont a {
  color: red;
  font-weight: 700;
}
.reason_img img {
  width: 100%;
  border-radius: 12px;
}
.but_btn_s {
  display: flex;
  background: #00a651;
  align-items: center;
  padding: 15px;
  border-radius: 12px;
  position: fixed;
  bottom: 0;
  width: 60%;
  color: white;
  z-index: 4;
  justify-content: space-between;
  padding: 15px 70px;
}
.but_btn_s a {
  background: black;
  color: white;
  padding: 10px 20px;
  border-radius: 9px;
  font-size: 15px;
  text-decoration: none;
}

.bottom_img1 {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  margin-top: 40px;
}
.bottom_link1 {
  display: block;
  width: 325px;
  margin: auto;
  margin-top: 40px;
  background: black;
  color: white;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 8px;
  border: 1px solid black;
  transition: 0.7s all;
}
.bottom_link1:hover {
  background: transparent;
  color: black;
}
.bottom_img2 {
  width: 50%;
  margin: auto;
  display: block;
  margin-top: 30px;
}
.bottom_link2 {
  width: 50%;
  display: block;
  text-align: center;
  margin: auto;
  margin-top: 30px;
  background: black;
  padding: 15px;
  color: white;
  text-decoration: none;
  border-radius: 10px;
  border: 1px solid black;
  transition: 0.7s all;
  margin-bottom: 20px;
}
.bottom_link2:hover {
  background: transparent;
  color: black;
}
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
  margin-top: 40px;
  margin-bottom: 90px;
}
.instagram-grid img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.bottom_foot {
  text-align: center;
}
.bottom_foot p {
  width: 50%;
  margin: auto;
  margin-top: 25px;
}
/* Responsive layout */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }

  .left-content,
  .right-sidebar {
    max-width: 100%;
  }

  .right-sidebar {
    position: static;
  }
}
@media (max-width: 540px) {
  .reason_div {
    flex-direction: column;
  }
  .reason_div2 {
    flex-direction: column-reverse;
  }
  .bottom_foot p,
  .bottom_img2 {
    width: 100%;
  }
  .update-bar {
    width: 100%;
    top: 0;
    position: absolute;
    left: 0;
    font-size: 15px;
    text-align: center;
  }
  .container {
    padding: 0;
  }
  h1 {
    margin-top: 70px;
  }
  .but_btn_s {
    width: 100%;
    left: 0;
    padding: 5px 15px;
  }
  .but_btn_s a {
    border-radius: 9px;
    font-size: 14px;

    text-align: center;
  }
}
