  .cleaning_after_wrapper {
      display: flex;
      justify-content: center;
      background: #f9f9f9;
      padding: 60px 0;
      font-family: 'Segoe UI', Roboto, sans-serif;
    }
    
    .cleaning_after_container {
      width: 1200px;
      max-width: 100%;
      display: flex;
      gap: 20px;
      padding: 0 10px;
      box-sizing: border-box;
    }
    
    .cleaning_after_textblock {
      flex: 1;
      min-width: 0; 
      padding: 20px;
      background: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(42,100,150,0.06);
    }
    
    .cleaning_after_services_wrapper {
      width: 600px;
      max-width: 100%;
      flex-shrink: 0;
    }
    
    .cleaning_after_main_title {
      font-size: 1.5rem;
      color: #2a6496;
      margin-bottom: 12px;
      font-weight: 700;
    }
    
    .cleaning_after_main_text {
     font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.6;
    text-align: left;
    }
    
    .cleaning_after_services {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
      width: 100%;
    }
    
    .cleaning_after_section {
      background: #fff;
      border-radius: 6px;
      padding: 12px;
      box-shadow: 0 2px 6px rgba(42,100,150,0.06);
      display: flex;
      flex-direction: column;
      align-items: center;
      box-sizing: border-box;
      border: 1px solid #e0e0e0;
      transition: all 0.3s ease;
      min-height: 140px;
    }
    
    .cleaning_after_section:hover {
      box-shadow: 0 4px 10px rgba(76,175,80,0.15);
      border-color: #4CAF50;
      transform: translateY(-2px);
    }
    
    .cleaning_after_icon {
      width: 50px;
      height: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #eaf3fa;
      border-radius: 50%;
      margin-bottom: 10px;
      color: #2a6496;
      font-size: 20px;
    }
    
    .cleaning_after_title {
      font-size: revert;
      font-weight: 600;
      color: #2a6496;
      margin-bottom: 4px;
      text-align: center;
    }
    
    .cleaning_after_text {
      font-size: 0.8rem;
      color: #555;
      text-align: center;
      line-height: 1.3;
    }
    
    @media (max-width: 1200px) {
      .cleaning_after_services_wrapper {
        width: 500px;
      }
    }
    
    @media (max-width: 1024px) {
      .cleaning_after_container {
        flex-direction: column;
        gap: 20px;
      }
      
      .cleaning_after_services_wrapper {
        width: 100%;
      }
      
      .cleaning_after_services {
        grid-template-columns: repeat(4, 1fr);
      }
    }
    
    @media (max-width: 768px) {
      .cleaning_after_services {
        grid-template-columns: repeat(2, 1fr);
      }
      
      .cleaning_after_wrapper {
        padding: 25px 0;
      }
    }
    
    @media (max-width: 480px) {
      .cleaning_after_main_title {
        font-size: 1.3rem;
      }
      
      .cleaning_after_main_text {
        font-size: 0.9rem;
      }
      
      .cleaning_after_section {
        min-height: 130px;
        padding: 10px;
      }
      
      .cleaning_after_icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
      }
      
      .cleaning_after_title {
        font-size: 0.85rem;
      }
    }
   