body {
  font-family: 'Arial', sans-serif;
  background-color: var(--bg-color);
  margin: 0;
  padding: 0;
}


:root {
  --primary-color: #00B207;
  --secondary-color: #2C742F;
  --text-color: #1A1A1A;
  --light-text: #666666;
  --bg-color: #FFFFFF;
  --light-bg: #f7f7f7;
  --border-color: #E6E6E6;
  --star-color: #FF8A00;
  --discount-color: #DB4444;
  --transition: all 0.3s ease;
}


[data-theme="dark"] {
  --primary-color: #4caf50;
  --secondary-color: #5cb85c;
  --text-color: #f0f0f0;
  --light-text: #d0d0d0;
  --bg-color: #121212;
  --light-bg: #222222;
  --border-color: #333333;
}


header.news-section {
  background-color: #F2F2F2;
  padding: 40px 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.header__title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}

.header__title h5 {
  font-family: 'Courier New', monospace;
  font-size: 1.2rem;
  color: #00B207;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.header__title h1 {
  font-size: 2.5rem;
  color: #333;
}

.news__wrapper {
  display: flex;
  gap: 24px;
  justify-content: center;
}

.card {
  width: 424px;
  height: 494px;
  background: var(--bg-color);
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  border: 1px solid var(--light-bg);
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
}

.col-md-4 {
  border: 1px solid var(--light-bg);
  border-radius: 10px;
}

.card:hover {
  transform: translateY(-5px);
  border: 1px solid #2C742F;
  box-shadow: 0px 0px 12px 0px #20B52652;
}



.card-image-wrapper {
  position: relative;
}

.card-img-top {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.comment-count {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #00B207;
  color: white;
  padding: 5px 10px;
  border-radius: 50%;
  font-size: 14px;
  font-weight: bold;
}

.all-icon {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 15px;
}

.icons {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 20px 35px;

}

.icons img {
  width: 16px;
  height: 16px;
}

.icons span {
  font-size: 14px;
  color: #666;
}

.card-title {
  font-size: 18px;
  font-weight: bold;
  color: var(--light-text);
  margin-bottom: 10px;
  padding: 0 40px;
}

.card-text {
  font-size: 14px;
  color: #2C742F;
  font-weight: bold;
  padding: 15px 40px;

}

.card-footer a {
  color: #00B207;
  font-weight: bold;
  padding: 10px 0 0 40px;


}

main {
  width: 100%;
  padding: 40px 0;
  background-color: var(--bg-color);
}

.main_container {
  position: relative;
}

main .first {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

main .first_div h5 {
  font-size: 18px;
  color: #00B207;
}

main .first_div h1 {
  font-size: 36px;
  color: var(--light-text);
}

.first_div h5,
.first_div h1 {
  transform: none;
}

main .second {
  display: flex;
  gap: 10px;
}

main .second img {
  width: 40px;
  height: 40px;
  background-color: #00B207;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
}

.testimonial-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
}

main .card {
  width: 424px;
  height: 254px;
  border: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

main .card-body {
  padding: 20px;
  width: 424;
  height: 170px;
  padding: 20px;
  gap: 20px;
  border-bottom-right-radius: 8px;
}

.quote-icon {
  width: 25px;
  height: 25px;
  margin-bottom: 10px;
}

main .card-text {
  width: 376px;
  height: 83;
  font-size: 14px;
  color: var(--light-text);
  margin-bottom: 20px;
  gap: 8px;
}

.customer-info {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}

.customer-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

main .card-body h6 {
  font-size: 16px;
  font-weight: bold;
  margin: 0;
}

main .card-body p {
  font-size: 14px;
  color: #888;
  margin: 0;
}

.rating-stars {
  width: 100px;
  height: 20px;
}

.aside_container {
  padding: 40px 0;
}

.div-section_1.features {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 150px;
  padding: 20px;
}

.div-section_1 img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.div-section_1 img:hover {
  transform: scale(1.1);
}

.div-section_2 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  padding: 20px;
}

.div-box_1,
.div-box_2,
.div-box_3 {
  flex: 1 1 50px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 20px;
  border: 2px solid #ccc;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.div-box_1 img,
.div-box_2 img,
.div-box_3 img {
  align-self: flex-start;
  width: 50px;
  height: 50px;
}

.div-box_1 h2,
.div-box_2 h2,
.div-box_3 h2 {
  font-size: 1.2rem;
  color: #333;
  margin: 0;
}

.div-box_1 address {
  font-style: normal;
  font-size: 1rem;
  color: #666;
}

.div-box_2 a {
  color: #00B207;
  text-decoration: none;
  font-size: 1.2rem;
}

.div-box_2 a:hover {
  text-decoration: underline;
}

.subscribe-box {
  display: flex;
  gap: 10px;
  width: 100%;
}

.subscribe-box input[type="email"] {
  flex: 1;
  padding: 10px 12px 10px 40px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 0.95rem;
  background-image: url('data:image/svg+xml;utf8,<svg fill="%2300B207" height="20" viewBox="0 0 24 24" width="20" xmlns="http://www.w3.org/2000/svg"><path d="M12 13.5l8-6.5H4l8 6.5zm0 2.5L4 9v10h16V9l-8 7z" /></svg>');
  background-repeat: no-repeat;
  background-position: 12px center;
  background-size: 20px 20px;
}

.subscribe-box button {
  padding: 10px 16px;
  background-color: #00B207;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  white-space: nowrap;
}

.subscribe-box button:hover {
  background-color: #009a06;
}

.footer {
  background: #181818;
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
  padding: 40px 0 0 0;
}

.footer-top {
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 40px 30px 40px;
  border-bottom: 1px solid #222;
}

.footer-col {
  flex: 1 1 180px;
  margin: 0 20px;
  min-width: 180px;
}

.footer-col.brand {
  flex: 2 1 300px;
  min-width: 40px;
}

.footer-col.brand {
  background-color: none;
}

.logo {
  font-size: 1.7em;
  font-weight: bold;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.logo-icon {
  font-size: 1.3em;
  margin-right: 8px;
}

.footer-col p {
  color: #b0b0b0;
  font-size: 0.98em;
  margin-bottom: 18px;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
}

.social-icons img {
  width: 28px;
  height: 28px;
  background: #222;
  border-radius: 50%;
  padding: 5px;
  transition: background 0.2s;
}

.social-icons img:hover {
  background: #2ecc40;
}

.footer-col h4 {
  font-size: 1.1em;
  margin-bottom: 14px;
  color: #fff;
  font-weight: 600;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.98em;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: #2ecc40;
}

.app-download .app-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.app-buttons a img {
  width: 140px;
  height: 40px;
  object-fit: contain;
}

.footer-bottom {
  margin: 0 auto;
  max-width: 1400px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 40px;
  background: #161616;
  font-size: 0.98em;
  color: #b0b0b0;
}

.payment-icons img {
  height: 28px;
  margin-left: 12px;
  vertical-align: middle;
}

@media (max-width: 900px) {
  .footer-top {
    flex-direction: column;
    gap: 30px;
    padding: 0 20px 30px 20px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    padding: 18px 20px;
  }
}

.my_account,
.helps,
.Proxy {
  width: 150px;
}

.download {
  width: 200px;
}


.download button {
  background: none;
  border: none;
  padding: 0;
  margin-right: 10px;
  margin-bottom: 15px;
  cursor: pointer;
  display: block;
}

.download button img {
  height: 40px;
  border-radius: 6px;
}

.footer-item_4 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid #333;
}

.h4 h4 {
  font-size: 14px;
  color: #9c9c9c;
  font-weight: normal;
  margin: 0;
}

.partners {
  display: flex;
  align-items: center;
  gap: 15px;
}

.partners img,
.partners svg {
  height: 30px;
  width: auto;
  object-fit: contain;
}

@media screen and (max-width: 1200px) {
  .main_footer {
    padding: 50px 40px 30px;
  }

  .footer-item_3 {
    flex-wrap: wrap;
    gap: 30px;
  }
}

@media screen and (max-width: 768px) {
  .news__wrapper {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 100%;
    max-width: 424px;
  }

  .testimonial-cards {
    flex-direction: column;
    align-items: center;
  }

  main .card {
    width: 100%;
    max-width: 424px;
  }

  .div-section_1.features {
    gap: 50px;
    flex-wrap: wrap;
  }

  .main_footer {
    padding: 40px 20px 20px;
  }

  .footer-item_3 {
    flex-direction: column;
    gap: 30px;
  }

  .my_account,
  .helps,
  .Proxy,
  .download {
    width: 100%;
  }

  .footer-item_4 {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .partners {
    flex-wrap: wrap;
    justify-content: center;
  }

}





.card {
  opacity: 0;
  transform: scale(0.8) translateY(50px);
  transition: all 0.3s ease;
}

.card.visible {
  opacity: 1;
  transform: scale(1) translateY(0);
  animation: animate__zoomInDown 1s ease forwards;
}