* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Raleway", sans-serif;
}

body {
  color: #222;
  line-height: 1.5;
  background: #fff;
}

/* ---------------- NAVBAR ---------------- */
.navbar {
  text-align: center;
  padding: 15px 0;
}
.navbar ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}
.navbar a {
  text-decoration: none;
  color: #555;
  font-size: 14px;
}
.navbar a:hover {
  color: #2d6a4f;
}

/* ---------------- HERO ---------------- */
@media (max-width: 768px) {
    .banner{
        
        display:none;
        }
}
.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
}
.hero-img img {
  max-width: 450px;
  width: 100%;
}

@media (max-width: 768px) {
  .hero-text img{
    margin: 0;
  }
  .hero-text a{
    margin-bottom:5px;
  }
.hero{
  padding: 5px;
}
.hero-img img {
  display:none;
}

}
.logo {
  max-width: 620px;
  width: 100%;
  margin: 15px auto;
}

.subtitle {
  font-size: 2rem;
  font-style: italic;
  color: #444;
}
.btn {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 30px;
  background: #2d6a4f;
  color: #fff;
  border-radius: 25px;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s;
}
.btn:hover {
  background: #2f6c35;
}

/* ---------------- FEATURES ---------------- */
.features {
  max-width: 1200px;
  border-radius: 1rem;
  margin: 0 auto;
  background: #2f6c35;
  color: #fff;
  padding: 50px 20px 80px;
  text-align: center;
  position: relative;
}

.features h2 {
  display: grid;
  justify-content: center;
  text-align:left;
  font-weight: bold;
  margin-bottom: 30px;
  font-size: 3rem;
  font-style: oblique;
  /* max-width: 1100px; */
}
@media (max-width: 768px) {
  .features h2 {
    font-size: 1.5rem;
    margin-left:0rem;
  } 
}
.cards {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1100px;
}

.card {
  background: #fff;
  color: #222;
  padding: 0.75rem;
  border-radius: 2rem;
  max-width: 200px;   
  min-width: 200px;   
  margin: 0 auto;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
  display: flex;             
  flex-direction: column;    
  justify-content: flex-start; 
  min-height: 180px;         
  transition: transform 0.3s ease;
}
.card-year{
  font-weight: 100;
  margin-top: -4rem;
    font-size: 2rem;
}

.card:hover {
  transform: translateY(-5px);
}
.card h3 {
  gap:20px;
  margin-bottom: 10px;
  font-size: 2rem;
  font-weight: 900;
}
.cardP{
  font-size: 1.2rem;
}
.garantia {
  font-size: 2rem;
  font-weight: 900;
}
@media (max-width: 1024px) {
  .cards {
    grid-template-columns: repeat(2, 1fr); 
  }
}

@media (max-width: 600px) {
  .cards {
    grid-template-columns: 1fr; 
  }

  .cats-img {
    position: static; 
    margin: 20px auto 0;
    display: block;
  }
}

.highlight {
  font-weight: bold;
  font-size: 22px;
  color: #000;
}

.cats-img {
  position: absolute;   /* теперь можно привязать к родителю */
  bottom: -7.5rem;            /* прижать к низу секции */
  right: -7rem;          /* отступ справа */
  /* left:5rem; */
  /* width: auto;
  height: auto; */

}

.cats-img img {
  width: 22rem;         /* фиксированный размер картинки */
  height: auto;
}

/* ---------------- INFO ---------------- */
.info {
  padding: 40px 20px 40px;
  text-align: center;
  margin: 0 auto;
}
.info h3 {
  font-size:2rem;
  margin-bottom: 1.2rem;
  text-align: left;
  font-style: italic;
  
}
.info-content {
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 30px;
  align-items: center;
  flex-wrap: wrap;
}
.info-img img {
  max-width: 28.125rem;
  height: 28.125rem;      /* высота */
  object-fit: cover;
  width: 100%;
  border-radius: 10px;
}
.info-list {
  max-width: 45rem;
  text-align: left;
}
.info-item {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.info-item p{
  font-size:1.75rem;
  text-align: justify;
  margin-bottom: 1rem;
}
@media (max-width: 768px){
  .info-item p{
  font-size:1.25rem;
}
}
.icon {
  width: 7rem;
}

.highlight100 {
  font-size: 3.5rem;   /* увеличиваем размер */
  font-weight: 800;    /* делаем жирнее */
  color: #000;         /* можно оставить чёрным для контраста */
  display: block;      /* чтобы число было на отдельной строке */
  margin-top: -1.5rem;
  /* margin: 0;       небольшой отступ сверху и снизу */
}

.highlight2 {
  margin-top: -4rem;
  font-size: 10rem;   /* увеличиваем размер */
  font-weight: 800;    /* делаем жирнее */
  color: #000;         /* можно оставить чёрным для контраста */
  display: block;      /* чтобы число было на отдельной строке */
}

/* можно задать чуть меньше на телефонах */
@media (max-width: 600px) {
  .highlight100 {
    font-size: 2rem;
    margin-top: 0rem;
  }
  .highlight2 {
    margin-top: 0rem;
    font-size: 2rem;
  }
  .card-year{
    margin-top: 0rem;
  }
}

/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 768px) {
  .cats-img {
    position: static;
    margin: 30px auto 0;
    display: block;
  }
    .cats-img img{
    width: 12rem;
  }
  .info-list {
    text-align: center;
  }
  .info-item {
    justify-content: center;
    text-align: center;
  }
}