/* Основной стиль */
body {
    background-color: #ffffff;
    color: #333;
    font-family: 'Open Sans', Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
  }
  
  header {
    background-color: #fff;
    border-bottom: 1px solid #eaeaea;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo {
    color: #00A651;
    font-size: 24px;
    font-weight: bold;
  }
  
  nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
  }
  
  nav ul li {
    margin: 0 15px;
  }
  
  nav ul li a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
  }
  
  nav ul li a:hover {
    color: #00A651;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
  }
  
  section {
    margin-bottom: 60px;
  }
  
  .section-title {
    font-size: 32px;
    color: #00A651;
    text-align: center;
    margin-bottom: 20px;
  }
  
  .section-subtitle {
    font-size: 18px;
    color: #666;
    text-align: center;
    margin-bottom: 40px;
  }
  
  /* Блок "О компании" */
  #about .intro {
    text-align: center;
    margin-bottom: 30px;
  }
  
  #about .intro p {
    font-size: 16px;
    color: #555;
  }
  
  #about .values {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 30px;
    gap: 20px;
  }
  
  #about .values .value-item {
    flex: 1 1 200px;
    padding: 20px;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    text-align: center;
    background-color: #f9f9f9;
  }
  
  #about .values .value-item h3 {
    color: #00A651;
    margin-bottom: 10px;
    font-size: 18px;
  }
  
  #about .gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  
  #about .gallery img {
    max-width: 100%;
    border-radius: 8px;
  }
  
  /* Блок "Покупателям" */
  #buyers .store-info {
    margin-bottom: 40px;
  }
  
  #buyers .store-info p {
    font-size: 16px;
    color: #555;
    text-align: center;
  }
  
  #buyers .loyalty,
  #buyers .feedback,
  #buyers .delivery {
    text-align: center;
    margin-bottom: 40px;
  }
  
  #buyers .loyalty p,
  #buyers .feedback p,
  #buyers .delivery p {
    font-size: 16px;
    margin-bottom: 15px;
  }
  
  /* Блок "Партнерам" */
  #partners .partner-block {
    margin-bottom: 40px;
    padding: 20px;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    background-color: #f9f9f9;
  }
  
  #partners .partner-block h3 {
    color: #00A651;
    margin-bottom: 15px;
    font-size: 20px;
  }
  
  #partners .partner-block p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
  }
  
  /* Кнопки */
  .btn {
    background-color: #00A651;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 10px 20px;
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s ease-out;
  }
  
  .btn:hover {
    background-color: #008842;
  }
  
  /* Футер */
  footer {
    background-color: #F7F8FA;
    color: #333;
    padding: 20px;
    text-align: center;
    border-top: 1px solid #eaeaea;
    font-size: 14px;
  }
  
  footer .legal a {
    margin: 0 10px;
    color: #999;
    text-decoration: underline;
    font-size: 14px;
  }
  
  footer .social a {
    margin: 0 5px;
    color: #00A651;
    text-decoration: none;
    transition: color 0.2s ease-out;
  }
  
  footer .social a:hover {
    color: #008842;
  }
  
  /* Фон для блока .values */
  .values {
    background: url("/images/lemons.jpg") no-repeat center center;
    background-size: cover;
    padding: 60px 20px;
  }
  /* Дополнительные стили для карты */
  #map {
    width: 100%;
    height: 400px;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    margin: 20px 0;
  }
  /* Стили для карточек магазинов в блоке "О компании" */
  .store-cards .store-card {
    position: relative;
    background-size: cover;
    background-position: center;
    height: 250px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
  }
  .store-cards .store-card .store-name {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.5); /* полупрозрачный чёрный фон */
    color: #fff;
    padding: 10px;
    text-align: center;
    font-size: 18px;
  }