﻿h1 {margin-top: 20px; line-height: 40px; color: #2e7d32;}


.about-title img {width: 100%; border-radius: 8px;}

hr {
  border: none;          /* прибираємо стандартну рамку */
  height: 2px;           /* товщина */
  background-color: #2e7d32; /* колір */
  margin: 20px 0;        /* відступи зверху і знизу */
}


.about-intro p {
  font-size: 1rem;
  line-height: 1.6;
  margin: 10px 0 30px;
}

h2 {
  text-align: center;
  margin-left: 0;
}


.values-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0;
}

.values-header img {
  width: 40px;
  height: auto;
}

.values-list {
  list-style: none;
  padding: 0;
  margin: 0 20px;
}

.values-list li {
  margin-bottom: 15px;
  font-size: 1rem;
  line-height: 1.6;
  color: #424242;
}

.values-list strong {
  color: #2e7d32;
  text-transform: uppercase;
  font-size: 1.1rem;
}


/* Нижні блоки */
.bottom-blocks {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.bottom-card {
  flex: 1 1 calc(33.333% - 20px);
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bottom-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.bottom-card img {
  width: 100%;
  max-width: 300px;
  margin-bottom: 15px;
  border-radius: 8px;
}

.bottom-card h3 {
  color: #2e7d32;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.bottom-card p {
  font-size: 0.94rem;
  line-height: 1.5;
  color: #424242;
}

/* Адаптивність */
@media (max-width: 768px) {
  .bottom-blocks {
    flex-direction: column;
    gap: 15px;
  }
  .bottom-card {
    flex: 1 1 100%;
  }
  .bottom-card img {
    max-width: 100%;
  }
}


