.features-block-section {
  width: 100%;
  overflow: hidden;
}

.features-block-section .section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
  padding: 0 20px;
}

.features-block-section .section-header h2 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.features-block-section .section-header h2 span {
  color: #ff4d4d;
}

.features-block-section .section-subheader {
  font-size: clamp(18px, 2vw, 20px);
  line-height: 1.5;
  color: #666;
}

.features-block-section .blocks-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.features-block-section .block {
  padding: 40px;
  background: #f8f8f8;
  border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.features-block-section .block:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.features-block-section .icon-wrapper {
  margin-bottom: 24px;
}

.features-block-section .icon-wrapper img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.features-block-section .block-title {
  font-size: 24px;
  line-height: 1.3;
  font-weight: 600;
  margin-bottom: 16px;
}

.features-block-section .block-text {
  font-size: 16px;
  line-height: 1.6;
}

.features-block-section .block-text strong {
  color: #ff4d4d;
  font-weight: 600;
}

@media screen and (min-width: 1024px) {
  .features-block-section .blocks-wrapper {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
}

@media screen and (max-width: 849px) {
  .features-block-section .section-header {
    margin-bottom: 40px;
  }
  
  .features-block-section .blocks-wrapper {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .features-block-section .block {
    padding: 32px;
  }
}