/* Стили для фотогалереи */
    .services-gallery {
      margin: 40px 0;
      padding: 0 20px;
    }
    
    .gallery-title {
      text-align: center;
      font-size: 28px;
      color: #333;
      margin-bottom: 30px;
      font-weight: 600;
    }
    
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
      max-width: 1200px;
      margin: 0 auto;
    }
    
    .gallery-item {
      position: relative;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
      height: 250px;
    }
    
    .gallery-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }
    
    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    
    .gallery-item:hover img {
      transform: scale(1.05);
    }
    
    .gallery-caption {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
      color: white;
      padding: 20px 15px 15px;
      transform: translateY(10px);
      opacity: 0;
      transition: all 0.3s ease;
    }
    
    .gallery-item:hover .gallery-caption {
      transform: translateY(0);
      opacity: 1;
    }
    
    .gallery-caption h3 {
      margin: 0 0 5px 0;
      font-size: 18px;
      font-weight: 600;
    }
    
    .gallery-caption p {
      margin: 0;
      font-size: 14px;
      opacity: 0.9;
    }
    
    /* Адаптивность */
    @media (max-width: 768px) {
      .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      
      .gallery-title {
        font-size: 24px;
      }
      
      .gallery-item {
        height: 200px;
      }
      
      .services-gallery {
        padding: 0 15px;
        margin: 30px 0;
      }
    }
    
    /* Дополнительные стили для контента */
    .service-content {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px 40px;
    }
    
    .service-section {
      margin-bottom: 40px;
      background: #f9f9f9;
      padding: 30px;
      border-radius: 12px;
      border-left: 4px solid #2c5282;
    }
    
    .service-section:last-child {
      margin-bottom: 0;
    }
    
    .service-section h2 {
      color: #2c5282;
      margin-top: 0;
      margin-bottom: 20px;
      font-size: 24px;
      font-weight: 600;
    }
    
    .service-section ul {
      padding-left: 20px;
    }
    
    .service-section li {
      margin-bottom: 10px;
      line-height: 1.6;
    }
    
    .service-section li:last-child {
      margin-bottom: 0;
    }
    
    @media (max-width: 768px) {
      .service-content {
        padding: 0 15px 30px;
      }
      
      .service-section {
        padding: 20px;
        margin-bottom: 30px;
      }
      
      .service-section h2 {
        font-size: 20px;
      }
    }

 .special-info {
      background-color: #ebf5ff;   /* светло-голубой фон */
      padding: 28px 30px;
      border-radius: 16px;
      margin-bottom: 40px;
      box-shadow: 0 8px 20px rgba(11, 79, 108, 0.08);
      font-size: 16px;
      line-height: 1.65;
      color: #1a2e40;
    }
    
    .special-info h3 {
      margin-top: 0;
      margin-bottom: 18px;
      font-size: 24px;
      font-weight: 700;
      color: #0b4f6c;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .special-info h2 {
      color: #2c5282;
      margin-top: 0;
      margin-bottom: 20px;
      font-size: 24px;
      font-weight: 600;
    }
    
    .special-info h3 i {
      color: #0b4f6c;
      font-size: 28px;
    }
    
    .special-info p {
      margin: 0 0 15px 0;
    }
    
    .special-info p:last-child {
      margin-bottom: 0;
    }
    
    /* дополнительный акцент для заголовка "Сроки выполнения" */
    .special-info .deadline-title {
      font-size: 24px;
      font-weight: 700;
      color: #0b4f6c;
      margin-bottom: 18px;
    }
    
    @media (max-width: 768px) {
      .special-info {
        padding: 22px 20px;
        margin-bottom: 30px;
      }
      .special-info h3,
      .special-info .deadline-title {
        font-size: 20px;
      }
    }

